diff options
Diffstat (limited to 'app/CMakeLists.txt')
| -rw-r--r-- | app/CMakeLists.txt | 11 |
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 @@ | |||
| 1 | cmake_minimum_required(VERSION 3.20) | ||
| 2 | |||
| 3 | add_library(app | ||
| 4 | include/dxwindow.h | ||
| 5 | src/dxwindow.c) | ||
| 6 | |||
| 7 | target_include_directories(app PUBLIC | ||
| 8 | include) | ||
| 9 | |||
| 10 | target_link_libraries(app PUBLIC | ||
| 11 | glfw) | ||
