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

@@ -17,6 +17,7 @@ add_custom_target(userspace)
add_custom_target(userspace-install DEPENDS userspace)
foreach(USERSPACE_PROJECT ${USERSPACE_PROJECTS})
target_link_options(${USERSPACE_PROJECT} PUBLIC -nodefaultlibs)
add_dependencies(userspace ${USERSPACE_PROJECT})
add_dependencies(userspace-install ${USERSPACE_PROJECT}-install)
endforeach()