Skip these because CI needed a toolchain rebuild
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-01-06 15:00:49 +01:00
parent 7acef24494
commit 30555f8e5a
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -1,8 +1,6 @@
function(luna_app SOURCE_FILE APP_NAME) function(luna_app SOURCE_FILE APP_NAME)
add_executable(${APP_NAME} ${SOURCE_FILE}) add_executable(${APP_NAME} ${SOURCE_FILE})
add_dependencies(${APP_NAME} libc) add_dependencies(${APP_NAME} libc)
target_include_directories(${APP_NAME} PRIVATE ${LUNA_BASE}/usr/include)
target_link_directories(${APP_NAME} PRIVATE ${LUNA_BASE}/usr/lib)
install(TARGETS ${APP_NAME} DESTINATION ${LUNA_ROOT}/initrd/bin) install(TARGETS ${APP_NAME} DESTINATION ${LUNA_ROOT}/initrd/bin)
endfunction() endfunction()