aboutsummaryrefslogtreecommitdiff
path: root/app/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'app/CMakeLists.txt')
-rw-r--r--app/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
new file mode 100644
index 0000000..7b2bdaf
--- /dev/null
+++ b/app/CMakeLists.txt
@@ -0,0 +1,11 @@
1cmake_minimum_required(VERSION 3.20)
2
3add_library(app
4 include/dxwindow.h
5 src/dxwindow.c)
6
7target_include_directories(app PUBLIC
8 include)
9
10target_link_libraries(app PUBLIC
11 glfw)