9 lines
157 B
CMake
9 lines
157 B
CMake
cmake_minimum_required(VERSION 4.0)
|
|
|
|
add_executable(first
|
|
first.c
|
|
)
|
|
target_link_libraries(first PUBLIC card-os-user)
|
|
|
|
card_os_finalize_user_program(first)
|