forked from Lubuntu/welcome
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
347 B
21 lines
347 B
find_package(Qt5Core REQUIRED)
|
|
find_package(Qt5Network REQUIRD)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
|
|
|
set (SOURCES
|
|
main.cpp
|
|
mainwindow.cpp
|
|
window.cpp
|
|
)
|
|
|
|
include_directory(.)
|
|
|
|
add_executable(test ${SOURCES} )
|
|
qt5_use_modules(test Core Network)
|
|
|
|
# Should not be necessary
|
|
#CONFIG += console
|
|
#CONFIG -= app_bundle
|
|
#TEMPLATE = app
|