mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 02:06:34 +00:00
e95b3fd9bb
Apple platforms macOS, iOS, tvOS, and watchOS can all share the same compiler information. Rename `Darwin-*` modules to `Apple-*` and load them all through `CMAKE_EFFECTIVE_SYSTEM_NAME`. This saves duplication of 4 * 21 compiler information modules. Issue: #17870
9 lines
323 B
CMake
9 lines
323 B
CMake
set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-qmkshrobj")
|
|
set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle")
|
|
|
|
# Enable shared library versioning.
|
|
set(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-install_name")
|
|
|
|
# -qhalt=e = Halt on error messages (rather than just severe errors)
|
|
string(APPEND CMAKE_C_FLAGS_INIT " -qhalt=e")
|