mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
f489c3fd07
_IMPLICIT_LINK_DIRECTORIES Othrewise, if you link a RC module with a static C library (as done for fusion DLLs), you get the standard C libraries from GCC. This is not what we want. This might have to be done for MSVC builds. Check build.ninja to verify this.
9 lines
322 B
CMake
9 lines
322 B
CMake
foreach(lang C CXX ASM)
|
|
set(CMAKE_${lang}_FLAGS_DEBUG "")
|
|
set(CMAKE_${lang}_FLAGS_MINSIZEREL "-Os -DNDEBUG")
|
|
set(CMAKE_${lang}_FLAGS_RELEASE "")
|
|
set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO "-O2 -g -DNDEBUG")
|
|
set(CMAKE_${lang}_IMPLICIT_LINK_LIBRARIES "")
|
|
set(CMAKE_${lang}_IMPLICIT_LINK_DIRECTORIES "")
|
|
endforeach()
|