mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
45 lines
1.0 KiB
CMake
Executable File
45 lines
1.0 KiB
CMake
Executable File
project(test-ipc)
|
|
|
|
if(NOT MSVC)
|
|
add_compile_options(
|
|
-Wno-attributes
|
|
-Wno-missing-field-initializers
|
|
-Wno-unused-variable
|
|
-Wno-unused-function)
|
|
else()
|
|
add_compile_options(
|
|
/wd4723)
|
|
endif()
|
|
|
|
FetchContent_Declare(googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
GIT_TAG v1.12.0
|
|
)
|
|
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
|
|
if (LIBIPC_USE_STATIC_CRT)
|
|
set(gtest_force_shared_crt OFF CACHE BOOL "" FORCE)
|
|
else()
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
endif()
|
|
FetchContent_MakeAvailable(googletest)
|
|
|
|
include_directories(
|
|
${LIBIPC_PROJECT_DIR}/include
|
|
${LIBIPC_PROJECT_DIR}/src
|
|
${LIBIPC_PROJECT_DIR}/test)
|
|
|
|
file(GLOB SRC_FILES
|
|
${LIBIPC_PROJECT_DIR}/test/imp/*.cpp
|
|
${LIBIPC_PROJECT_DIR}/test/pmr/*.cpp
|
|
${LIBIPC_PROJECT_DIR}/test/concur/*.cpp
|
|
${LIBIPC_PROJECT_DIR}/test/ipc/*.cpp)
|
|
|
|
file(GLOB HEAD_FILES
|
|
${LIBIPC_PROJECT_DIR}/test/*.h)
|
|
|
|
add_executable(${PROJECT_NAME} ${SRC_FILES} ${HEAD_FILES})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
gtest_main
|
|
imp pmr ipc)
|