You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
342 B
11 lines
342 B
# Add all the warnings to the files
|
|
if( COMPILER_SUPPORTS_WARNINGS )
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARN_FLAGS_CXX}")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARN_FLAGS_C}")
|
|
endif()
|
|
|
|
add_subdirectory( idftools )
|
|
|
|
if( KICAD_USE_OCE OR KICAD_USE_OCC )
|
|
add_subdirectory( kicad2step )
|
|
endif( KICAD_USE_OCE OR KICAD_USE_OCC )
|