Skip to content
Snippets Groups Projects
Commit 74845b1d authored by Harald Scheirich's avatar Harald Scheirich
Browse files

Merge branch 'fix/find-tests' into 'master'

Fix test discovery under linux

See merge request iMSTK/iMSTK!603
parents 05603d44 319f9090
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,13 @@ else()
message(STATUS "Building dual PhysX configurations")
endif()
if(MSVC)
set(NO_MEMSET "")
else()
# Newer GCC complains with the selected physx version
set(NO_MEMSET "-Wno-error=class-memaccess")
endif()
set(PHYSX_iMSTK_INSTALL "${CMAKE_COMMAND}"
-DPhysX_INSTALL_DIR=${PhysX_BINARY_DIR}/install
-DiMSTK_INSTALL_DIR=${CMAKE_INSTALL_PREFIX}
......@@ -55,6 +62,7 @@ imstk_add_external_project( PhysX
URL_MD5 9c17263ceec705eaf1ddd7c2ee796bac
SOURCE_SUBDIR ./physx/compiler/public
CMAKE_CACHE_ARGS
-DPHYSX_CXX_FLAGS:STRING=${NO_MEMSET}
-DCMAKE_BUILD_TYPE:STRING=${PHYSX_CONFIGURATION}
-DCMAKE_INSTALL_PREFIX:PATH=${PhysX_BINARY_DIR}/install
-DPXSHARED_INSTALL_PREFIX:PATH=${PhysX_BINARY_DIR}/install
......
......@@ -56,7 +56,11 @@ function(imstk_add_test_internal target kind)
Threads::Threads
)
if (MSVC)
gtest_discover_tests(${test_driver_executable} WORKING_DIRECTORY "${CMAKE_INSTALL_PREFIX}/bin" DISCOVERY_MODE PRE_TEST)
else()
gtest_add_tests(${test_driver_executable} SOURCES "${test_files}")
endif()
#-----------------------------------------------------------------------------
# Add the target to Testing folder
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment