Added CMakeLists.txt

This commit is contained in:
Daniel Brunner
2018-10-07 16:06:55 +02:00
parent 9813739e94
commit ab89ba131d

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
project(DbRadioDumper)
set(HEADERS
dumpjob.h
)
set(SOURCES
dumpjob.cpp
main.cpp
)
add_executable(radiodumper ${HEADERS} ${SOURCES})
target_link_libraries(radiodumper Qt5::Core Qt5::Network)