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
Tristan Smith 32b895afe2 fuck
2024-06-20 01:30:10 -04:00

17 lines
367 B
CMake

cmake_minimum_required(VERSION 3.5)
project(ip_reporter)
set(CMAKE_CXX_STANDARD 17)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5Core REQUIRED)
find_package(Qt5Gui REQUIRED)
find_package(Qt5Network REQUIRED)
set(CMAKE_AUTOMOC ON)
add_executable(ip_reporter src/main.cpp)
target_link_libraries(ip_reporter Qt5::Widgets Qt5::Core Qt5::Gui Qt5::Network pcap)