From d7b80cff6af21c58766491b16396c8d7140c3bff Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Sun, 7 Oct 2018 17:44:12 +0200 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..69a4c31 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +project(DbTernaryClock) + +set(HEADERS +) + +set(SOURCES + main.cpp +) + +add_executable(ternaryclock ${HEADERS} ${SOURCES}) + +target_link_libraries(ternaryclock Qt5::Core Qt5::Gui Qt5::Widgets dbguilib)