diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f791c88 --- /dev/null +++ b/CMakeLists.txt @@ -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)