s20/CMakeLists.txt

16 lines
421 B
CMake
Raw Normal View History

2015-01-11 00:17:06 +00:00
cmake_minimum_required(VERSION 2.8)
project(s20)
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
# Find the QtWidgets library
find_package(Qt5Network)
# Tell CMake to create the helloworld executable
add_executable(s20 s20.cpp)
# Use the Widgets module from Qt 5.
target_link_libraries(s20 Qt5::Network)