This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
qSniff/source/send/CMakeLists.txt

14 lines
173 B
CMake

project(Send)
cmake_minimum_required(VERSION 3.6)
set(CMAKE_CXX_STANDARD 11)
add_executable(${PROJECT_NAME}
send.cpp
)
target_link_libraries(${PROJECT_NAME}
sender
)