aboutsummaryrefslogtreecommitdiff
path: root/app/CMakeLists.txt
blob: 7b2bdafffd3814b94a197fb9c9fdaa26ee982fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.20)

add_library(app
    include/dxwindow.h
    src/dxwindow.c)

target_include_directories(app PUBLIC
    include)

target_link_libraries(app PUBLIC
    glfw)