mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 21:11:17 +12:00
- Fix target_precompile_headers() usage; the CemuCommon target exposes the src/Common/precompiled.h precompiled header as part of its public interface with target_precompile_headers(CemuCommon PUBLIC precompiled.h), so all the other targets wanting to use the precompiled header have to link to the CemuCommon target with target_precompile_headers(TargetName PRIVATE CemuCommon). - Set the project version to 2.0 - Set RUNTIME_OUTPUT_DIRECTORY instead of only their _DEBUG and _RELEASE variants, fixing the compilation when neither build types are defined - Use a consistent indentation style (tabs, like in the .cpp files) - Use "modern" variants of some functions, e.g. add_definitions -> add_compile_definitions
39 lines
1.4 KiB
CMake
39 lines
1.4 KiB
CMake
project(CemuAsm C)
|
|
|
|
if (WIN32)
|
|
|
|
enable_language(C ASM_MASM)
|
|
|
|
add_library(CemuAsm x64util_masm.asm)
|
|
set_source_files_properties(x64util_masm.asm PROPERTIES LANGUAGE ASM_MASM)
|
|
|
|
# workaround for cr flag being passed to LINK.exe which considers it an input file and thus fails
|
|
# doesn't always seem to happen. The Windows CI builds were fine, but locally I would run into this problem
|
|
# possibly related to https://gitlab.kitware.com/cmake/cmake/-/issues/18889
|
|
set(CMAKE_ASM_MASM_CREATE_STATIC_LIBRARY "<CMAKE_AR> /OUT:<TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
|
|
else()
|
|
|
|
# NASM
|
|
if (APPLE)
|
|
set(CMAKE_ASM_NASM_COMPILE_OBJECT "<CMAKE_ASM_NASM_COMPILER> -g -Fdwarf -f macho64 --prefix _ -o <OBJECT> <SOURCE>")
|
|
else()
|
|
set(CMAKE_ASM_NASM_COMPILE_OBJECT "<CMAKE_ASM_NASM_COMPILER> -g -Fdwarf -f elf64 -o <OBJECT> <SOURCE>")
|
|
endif()
|
|
set(CMAKE_ASM_NASM_LINK_EXECUTABLE "ld <FLAGS> <CMAKE_ASM_NASM_LINK_FLAGS> <LINK_FLAGS> -fPIC <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
|
|
|
|
enable_language(C ASM_NASM)
|
|
|
|
add_library(CemuAsm x64util_nasm.asm)
|
|
set_source_files_properties(x64util_nasm.asm PROPERTIES LANGUAGE ASM_NASM)
|
|
|
|
if (APPLE)
|
|
set_target_properties(CemuAsm PROPERTIES NASM_OBJ_FORMAT macho64)
|
|
else()
|
|
set_target_properties(CemuAsm PROPERTIES NASM_OBJ_FORMAT elf64)
|
|
endif()
|
|
set_target_properties(CemuAsm PROPERTIES LINKER_LANGUAGE C)
|
|
|
|
endif()
|
|
|
|
set_property(TARGET CemuAsm PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|