Skip to content
Snippets Groups Projects
Commit c3d8f15b authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

REFAC: Use bigobj in all msvc

parent 5e7eddbc
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ macro(imstk_add_executable target)
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
-Wall -Wno-unused-function>
$<$<CXX_COMPILER_ID:MSVC>:
-W4 -MP -wd4505>)
-W4 -MP -wd4505 /bigobj>)
endif()
set_target_properties(${target} PROPERTIES
......
......@@ -96,13 +96,13 @@ function(imstk_add_library target)
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
-Wall -Wno-unused-function -fdiagnostics-color=always>
$<$<CXX_COMPILER_ID:MSVC>:
-W4 -MP -wd4505>)
-W4 -MP -wd4505 /bigobj>)
else()
target_compile_options(${target} PRIVATE
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
-Wall -Wno-unused-function>
$<$<CXX_COMPILER_ID:MSVC>:
-W4 -MP -wd4505>)
-W4 -MP -wd4505 /bigobj>)
endif()
#-----------------------------------------------------------------------------
......
......@@ -23,7 +23,6 @@ project(Example-PBDCloth)
#-----------------------------------------------------------------------------
imstk_add_executable(${PROJECT_NAME} pbdClothExample.cpp)
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
#-----------------------------------------------------------------------------
# Add the target to Examples folder
#-----------------------------------------------------------------------------
......
......@@ -23,7 +23,6 @@ project(Example-PBDString)
#-----------------------------------------------------------------------------
imstk_add_executable(${PROJECT_NAME} pbdStringExample.cpp)
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
#-----------------------------------------------------------------------------
# Add the target to Examples folder
#-----------------------------------------------------------------------------
......
......@@ -23,7 +23,6 @@ project(Example-TaskGraphTiming)
#-----------------------------------------------------------------------------
imstk_add_executable(${PROJECT_NAME} taskGraphTimingExample.cpp)
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
#-----------------------------------------------------------------------------
# Add the target to Examples folder
#-----------------------------------------------------------------------------
......
......@@ -7,13 +7,10 @@ imstk_add_library( Geometry
Common
${VTK_LIBRARIES})
target_compile_options(Geometry PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
#-----------------------------------------------------------------------------
# Testing
#-----------------------------------------------------------------------------
if( ${PROJECT_NAME}_BUILD_TESTING )
include(imstkAddTest)
imstk_add_test( Geometry )
target_compile_options(imstk_geometry_test_driver PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
endif()
......@@ -11,8 +11,6 @@ imstk_add_library( MeshIO
VegaFEM::volumetricMesh
${VTK_LIBRARIES}
)
target_compile_options(MeshIO PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/bigobj>)
#-----------------------------------------------------------------------------
# Testing
......
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