This repository has been archived on 2025-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
ip-reporter-cpp/CMakeLists.txt
2024-08-31 22:49:36 -04:00

14 lines
301 B
CMake

cmake_minimum_required(VERSION 3.5)
project(ip_reporter)
set(CMAKE_CXX_STANDARD 17)
find_package(Qt6 REQUIRED COMPONENTS Widgets Core Gui Network)
set(CMAKE_AUTOMOC ON)
add_executable(ip_reporter src/main.cpp)
target_link_libraries(ip_reporter Qt6::Widgets Qt6::Core Qt6::Gui Qt6::Network pcap)