BuildSystem: Edit build flags regarding sse and warnings

This commit is contained in:
Bananymous
2023-07-31 22:31:17 +03:00
parent b245a55ea0
commit 2a851b52f1
3 changed files with 4 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ add_custom_target(userspace)
add_custom_target(userspace-install DEPENDS userspace)
foreach(USERSPACE_PROJECT ${USERSPACE_PROJECTS})
target_compile_options(${USERSPACE_PROJECT} PUBLIC -mno-sse -mno-sse2)
target_compile_options(${USERSPACE_PROJECT} PUBLIC -g)
add_dependencies(userspace ${USERSPACE_PROJECT})
add_dependencies(userspace-install ${USERSPACE_PROJECT}-install)
endforeach()