mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
OpenCascade 7.3 deprecates some TK libraries that were not required by KiCad, therefore we should not include them in the compile. Also correct missing compiles for STEP import/export induced by 584409b2e when using OCCT. There is no effect on OCE to this change.
12 lines
334 B
CMake
12 lines
334 B
CMake
# .cpp files are compiled with extra ${WSHADOW_FLAGS}
|
|
if( COMPILER_SUPPORTS_WSHADOW )
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WSHADOW_FLAGS}")
|
|
endif()
|
|
|
|
add_subdirectory( idftools )
|
|
add_subdirectory( kicad-ogltest )
|
|
|
|
if( KICAD_USE_OCE OR KICAD_USE_OCC )
|
|
add_subdirectory( kicad2step )
|
|
endif( KICAD_USE_OCE OR KICAD_USE_OCC )
|