aboutsummaryrefslogtreecommitdiff
path: root/hello/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'hello/CMakeLists.txt')
-rw-r--r--hello/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/hello/CMakeLists.txt b/hello/CMakeLists.txt
index 90a0d78..ac9f285 100644
--- a/hello/CMakeLists.txt
+++ b/hello/CMakeLists.txt
@@ -1,7 +1,10 @@
1cmake_minimum_required(VERSION 3.20) 1cmake_minimum_required(VERSION 3.25)
2 2
3add_executable(hello main.cc) 3project(hello)
4 4
5target_link_libraries(hello 5add_executable(hello
6 main.cc)
7
8target_link_libraries(hello PRIVATE
6 dxcommon 9 dxcommon
7 dxwindow) 10 dxwindow)