Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:51 +02:00
parent afb0b7a2e5
commit 7d27b0f274
6 changed files with 76 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
project(messagingserver)
set(HEADERS
client.h
server.h
)
set(SOURCES
client.cpp
main.cpp
server.cpp
)
add_executable(messagingserver ${HEADERS} ${SOURCES})
target_link_libraries(messagingserver Qt5::Core Qt5::Network messaginglib)