mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
0025114: CMake-based build tools for OCCT 7.0
All CMake meta-projects for OCCT are put to OCCT code (including fragments previously generated by WOK). "/bigobj" compiler flag added to TKQADraw because of the size of its object file [GeomToStep & Graphic3d] private headers are included from current dir of including source file
This commit is contained in:
16
src/TKIVtkDraw/CMakeLists.txt
Normal file
16
src/TKIVtkDraw/CMakeLists.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
project(TKIVtkDraw)
|
||||
|
||||
set (TOOLKIT_MODULES
|
||||
IVtkDraw
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
list( APPEND USED_LIBS ${VTK_LIBRARY_NAMES} )
|
||||
else()
|
||||
foreach(VTK_LIB_NAME ${VTK_LIBRARY_NAMES})
|
||||
string(REPLACE ".lib" ".so.1" VTK_LIB_NAME ${VTK_LIB_NAME})
|
||||
list( APPEND USED_LIBS "lib${VTK_LIB_NAME}")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
include(${OCCT_SOURCE_DIR}/adm/cmake/BuildToolkit.cmake)
|
Reference in New Issue
Block a user