darling/cmake/darling_exe.cmake

34 lines
984 B
CMake
Raw Normal View History

if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW)
cmake_policy(SET CMP0011 NEW)
endif(COMMAND cmake_policy)
include(use_ld64)
FUNCTION(add_darling_executable exe)
foreach(f IN LISTS ARGN)
set(files ${files} ${f})
endforeach(f)
add_executable(${exe} ${files})
set_property(TARGET ${exe} APPEND_STRING PROPERTY
LINK_FLAGS " ${CMAKE_EXE_LINKER_FLAGS} -nostdlib ${CMAKE_BINARY_DIR}/src/csu/CMakeFiles/csu.dir/crt1.10.6.o ")
if (BUILD_TARGET_64BIT)
target_compile_options(${exe} PRIVATE -arch ${APPLE_ARCH_64BIT})
elseif (BUILD_TARGET_32BIT)
target_compile_options(${exe} PRIVATE -arch ${APPLE_ARCH_32BIT})
set_property(TARGET ${exe} APPEND_STRING PROPERTY
LINK_FLAGS " -arch ${APPLE_ARCH_32BIT}")
endif (BUILD_TARGET_64BIT)
use_ld64(${exe})
2017-01-17 18:33:58 +00:00
target_link_libraries(${exe} system)
add_dependencies(${exe} csu)
2018-07-30 10:22:45 +00:00
if ((NOT NO_DSYM) AND (NOT ${exe}_NO_DSYM))
2018-07-30 10:22:45 +00:00
dsym(${exe})
endif ((NOT NO_DSYM) AND (NOT ${exe}_NO_DSYM))
ENDFUNCTION(add_darling_executable)