mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
d6ea8659c8
Instead of messing with global variables and the like, we introduce two target properties: - WITH_CXX_EXCEPTIONS: if you want to use C++ exceptions - WITH_CXX_RTTI: if you need RTTI in your module You can use the newly introduced set_target_cpp_properties function, with WITH_EXCEPTIONS and WITH_RTTI arguments We also introduce two libraries : - cpprt: for C++ runtime routines - cppstl: for the C++ standard template library NB: On GCC, this requires to create imported libraries with the related built-in libraries:libsupc++, limingwex, libstdc++ Finally, we manage the relevant flags with the ad-hoc generator expressions So, if you don't need exceptions, nor RTTI, nor use any runtime at all: you simply have nothing else to do than add your C++ file to your module
23 lines
575 B
CMake
23 lines
575 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/crt/include
|
|
${REACTOS_SOURCE_DIR}/sdk/include/c++)
|
|
|
|
list(APPEND SOURCE
|
|
ehvec.cpp
|
|
new_nothrow.cpp
|
|
terminate.cpp
|
|
typeinfo.cpp)
|
|
|
|
if(ARCH STREQUAL "i386")
|
|
add_asm_files(cpprt_asm i386/cpprt.s)
|
|
list(APPEND SOURCE i386/framehandler.c)
|
|
elseif(ARCH STREQUAL "amd64")
|
|
add_asm_files(cpprt_asm amd64/cpprt.s)
|
|
elseif(ARCH STREQUAL "arm")
|
|
add_asm_files(cpprt_asm arm/cpprt.s)
|
|
endif()
|
|
|
|
add_library(cpprt ${SOURCE} ${cpprt_asm})
|
|
set_target_cpp_properties(cpprt WITH_EXCEPTIONS)
|
|
add_dependencies(cpprt xdk)
|