aboutsummaryrefslogtreecommitdiff
path: root/hello/CMakeLists.txt
blob: 2804b2416d559684e1471743587eb60410aa7ca4 (plain)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required(VERSION 3.25)

project(hello)

add_executable(hello
    main.cc)

target_link_libraries(hello PRIVATE
    dxg
    dxwindow)