mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-20 20:21:42 +00:00
Gerbview: make my fix about MINGW specific to MINGW (commit b5cb0087
broke QA build)
This commit is contained in:
parent
b5cb008734
commit
f737d8f2db
@ -138,6 +138,9 @@ target_link_libraries( gerbview_kiface_objects
|
||||
|
||||
message( STATUS "Including 3Dconnexion SpaceMouse navigation support in gerbview" )
|
||||
add_subdirectory( navlib )
|
||||
|
||||
target_link_libraries( gerbview_kiface_objects PUBLIC gerbview_navlib)
|
||||
|
||||
add_dependencies( gerbview_kiface_objects gerbview_navlib )
|
||||
|
||||
# the main gerbview program, in DSO form.
|
||||
@ -159,7 +162,9 @@ target_link_libraries( gerbview_kiface
|
||||
${wxWidgets_LIBRARIES}
|
||||
)
|
||||
|
||||
target_link_libraries( gerbview_kiface PUBLIC gerbview_navlib)
|
||||
if( MINGW )
|
||||
target_link_libraries( gerbview_kiface PUBLIC gerbview_navlib)
|
||||
endif()
|
||||
|
||||
set_source_files_properties( gerbview.cpp PROPERTIES
|
||||
# The KIFACE is in gerbview.cpp, export it:
|
||||
|
Loading…
Reference in New Issue
Block a user