BuildSystem: link libraries when they change

This also fixed the need for manual linkin on firt build
This commit is contained in:
Bananymous
2023-05-31 22:40:15 +03:00
parent a75a3f7a5f
commit a378e59432
7 changed files with 7 additions and 11 deletions

View File

@@ -8,10 +8,7 @@ set(SOURCES
add_executable(Shell ${SOURCES})
target_compile_options(Shell PUBLIC -O2 -g)
add_dependencies(Shell libc-install ban-install)
target_link_options(Shell PUBLIC -nodefaultlibs)
target_link_libraries(Shell PUBLIC ${BANAN_LIB}/libc.a)
target_link_libraries(Shell PUBLIC ${BANAN_LIB}/libban.a)
target_link_libraries(Shell PUBLIC libc ban)
add_custom_target(Shell-install
COMMAND cp ${CMAKE_CURRENT_BINARY_DIR}/Shell ${BANAN_BIN}/