Luna/apps/CMakeLists.txt

8 lines
230 B
CMake
Raw Normal View History

2022-12-23 12:09:21 +00:00
function(luna_app SOURCE_FILE APP_NAME)
add_executable(${APP_NAME} ${SOURCE_FILE})
add_dependencies(${APP_NAME} libc)
install(TARGETS ${APP_NAME} DESTINATION ${LUNA_ROOT}/initrd/bin)
2022-12-23 12:09:21 +00:00
endfunction()
luna_app(app.c app)