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

project(hello)

add_executable(hello
    main.c)

target_link_libraries(hello PRIVATE
   app
   dxg)