Skip to content
Snippets Groups Projects
Commit af4ea9df authored by Lars Bilke's avatar Lars Bilke
Browse files

Speedup catalyst build by just building vtkIO for now.

parent a0c9f356
No related branches found
No related tags found
No related merge requests found
......@@ -15,15 +15,15 @@ ENDIF()
IF(WIN32)
SET(CATALYST_MAKE_COMMAND
cmake --build . --config Release &&
cmake --build . --config Debug)
cmake --build . --config Release --target vtkIO &&
cmake --build . --config Debug --target vtkIO)
SET(CATALYST_CONFIGURE_COMMAND cmake.bat)
# MESSAGE(STATUS ${CATALYST_MAKE_COMMAND})
ELSE()
IF($ENV{CI})
SET(CATALYST_MAKE_COMMAND make)
SET(CATALYST_MAKE_COMMAND make vtkIO)
ELSE()
SET(CATALYST_MAKE_COMMAND make -j ${NUM_PROCESSORS})
SET(CATALYST_MAKE_COMMAND make -j ${NUM_PROCESSORS} vtkIO)
ENDIF()
SET(CATALYST_CONFIGURE_COMMAND cmake.sh)
ENDIF()
......
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