Try to fix linking after constexpr change
Somehow, GCC 10 and 11 were unable to locate the prebuild colors when they were constexpr in gal, so give them on the link line again.
This commit is contained in:
parent
deb2bc0ac8
commit
dc08c48f33
|
@ -72,6 +72,7 @@ target_link_libraries( cvpcb_kiface
|
|||
3d-viewer
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
kimath
|
||||
${PCBNEW_IO_LIBRARIES}
|
||||
Boost::headers
|
||||
|
|
|
@ -437,6 +437,7 @@ target_link_libraries( eeschema
|
|||
# There's way too much crap coming in from common yet.
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
argparse::argparse
|
||||
${wxWidgets_LIBRARIES}
|
||||
)
|
||||
|
@ -480,6 +481,7 @@ target_link_libraries( eeschema_kiface
|
|||
PRIVATE
|
||||
common
|
||||
eeschema_kiface_objects
|
||||
gal # Circular dependency between gal and common now
|
||||
markdown_lib
|
||||
scripting
|
||||
sexpr
|
||||
|
|
|
@ -112,6 +112,7 @@ target_link_libraries( gerbview
|
|||
# There's way too much crap coming in from common yet.
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
core
|
||||
nlohmann_json
|
||||
${wxWidgets_LIBRARIES}
|
||||
|
@ -155,6 +156,7 @@ target_link_libraries( gerbview_kiface
|
|||
nlohmann_json
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
core
|
||||
gerbview_kiface_objects
|
||||
${wxWidgets_LIBRARIES}
|
||||
|
|
|
@ -85,6 +85,7 @@ target_link_libraries( pl_editor
|
|||
# There's way too much crap coming in from common yet.
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
core
|
||||
${wxWidgets_LIBRARIES}
|
||||
)
|
||||
|
@ -103,6 +104,7 @@ add_library( pl_editor_kiface MODULE
|
|||
target_link_libraries( pl_editor_kiface
|
||||
gal
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
core
|
||||
${wxWidgets_LIBRARIES}
|
||||
)
|
||||
|
|
|
@ -626,6 +626,7 @@ make_lexer(
|
|||
target_link_libraries( pcbnew_kiface_objects
|
||||
PRIVATE
|
||||
common
|
||||
gal # Circular dependency between gal and common now
|
||||
core
|
||||
dxflib_qcad
|
||||
nanosvg
|
||||
|
|
Loading…
Reference in New Issue