Commit 6a9771f2 authored by jean-pierre charras's avatar jean-pierre charras

main CMakeLists: build lib-wxpython only if KICAD_SCRIPTING_WXPYTHON is ON

parent 8df3326d
...@@ -341,6 +341,7 @@ add_definitions(-DWX_COMPATIBILITY) ...@@ -341,6 +341,7 @@ add_definitions(-DWX_COMPATIBILITY)
find_package( OpenGL QUIET ) find_package( OpenGL QUIET )
check_find_package_result( OPENGL_FOUND "OpenGL" ) check_find_package_result( OPENGL_FOUND "OpenGL" )
if( KICAD_SCRIPTING_WXPYTHON )
add_custom_target( lib-wxpython ) add_custom_target( lib-wxpython )
include( download_pcre ) include( download_pcre )
include( download_swig ) include( download_swig )
...@@ -348,6 +349,7 @@ add_custom_target( lib-wxpython ) ...@@ -348,6 +349,7 @@ add_custom_target( lib-wxpython )
add_dependencies( lib-wxpython pcre ) add_dependencies( lib-wxpython pcre )
add_dependencies( lib-wxpython swig ) add_dependencies( lib-wxpython swig )
add_dependencies( lib-wxpython libwxpython ) add_dependencies( lib-wxpython libwxpython )
endif()
if( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC ) if( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment