blob: 0580a0a69e88a6f82fd3580d28fa2a5fd2baec63 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
add_executable(cpp-integration-test
ChunkedHeaderTest.cpp
ExampleTest.cpp
RegionPutGetAllTest.cpp
PdxInstanceTest.cpp
RegisterKeysTest.cpp
StructTest.cpp
EnableChunkHandlerThreadTest.cpp
DataSerializableTest.cpp
FunctionExecutionTest.cpp
StructTest.cpp
)
target_compile_definitions(cpp-integration-test
PUBLIC
BOOST_ASIO_HAS_MOVE
GTEST_ELLIPSIS_NEEDS_POD_
)
target_include_directories(cpp-integration-test
PUBLIC
${CMAKE_CURRENT_BINARY_DIR}
)
target_link_libraries(cpp-integration-test
PUBLIC
apache-geode
integration-framework
testobject
ACE::ACE
GTest::gtest
GTest::gtest_main
Boost::boost
Boost::system
Boost::log
Boost::filesystem
PRIVATE
_WarningsAsError
internal
)
if(WIN32)
target_compile_definitions(cpp-integration-test
PUBLIC
# Required for Boost.WinAPI
_WIN32_WINNT=0x06020000
)
foreach (_target apache-geode testobject)
add_custom_command(TARGET cpp-integration-test POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different
"$<TARGET_FILE:${_target}>"
"$<$<CONFIG:Debug>:$<TARGET_PDB_FILE:${_target}>>"
"$<TARGET_FILE_DIR:cpp-integration-test>")
endforeach()
endif()
set_target_properties(cpp-integration-test PROPERTIES
CXX_VISIBILITY_PRESET hidden
VISIBILITY_INLINES_HIDDEN ON
FOLDER cpp/test/integration
)
add_clangformat(cpp-integration-test)
enable_testing()
include(GoogleTest)
gtest_discover_tests(cpp-integration-test)