
-- add missing executable linker libs from: CMAKE_C_STANDARD_LIBRARIES -- add missed transitive link libraries -- add skipped library linker options -- The linker expects -l../relative/path/to/lib.a to be relative to the top-level project Because there can be multiple top-level projects convert the path to an absolute path to target
9 lines
163 B
CMake
9 lines
163 B
CMake
if(__COMPILER_GHS)
|
|
return()
|
|
endif()
|
|
set(__COMPILER_GHS 1)
|
|
|
|
set(CMAKE_EXECUTABLE_SUFFIX "")
|
|
set(CMAKE_LIBRARY_PATH_TERMINATOR "")
|
|
set(CMAKE_LIBRARY_PATH_FLAG "")
|