tune the order of link libraries, based on estimated dependency sequence
This commit is contained in:
parent
bc48b8507b
commit
4cbb5c5e94
|
@ -94,11 +94,11 @@ target_link_libraries(cvpcb
|
|||
3d-viewer
|
||||
pcbcommon
|
||||
common
|
||||
polygon
|
||||
bitmaps
|
||||
polygon
|
||||
kbool
|
||||
${OPENGL_LIBRARIES}
|
||||
${wxWidgets_LIBRARIES}
|
||||
${OPENGL_LIBRARIES}
|
||||
${GDI_PLUS_LIBRARIES}
|
||||
)
|
||||
|
||||
|
|
|
@ -207,8 +207,14 @@ if(APPLE)
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
||||
endif(APPLE)
|
||||
|
||||
target_link_libraries(eeschema common bitmaps kbool polygon ${wxWidgets_LIBRARIES}
|
||||
${GDI_PLUS_LIBRARIES})
|
||||
target_link_libraries(eeschema
|
||||
common
|
||||
bitmaps
|
||||
polygon
|
||||
kbool
|
||||
${wxWidgets_LIBRARIES}
|
||||
${GDI_PLUS_LIBRARIES}
|
||||
)
|
||||
|
||||
install(TARGETS eeschema
|
||||
DESTINATION ${KICAD_BIN}
|
||||
|
|
|
@ -278,11 +278,11 @@ target_link_libraries(pcbnew
|
|||
3d-viewer
|
||||
pcbcommon
|
||||
common
|
||||
polygon
|
||||
bitmaps
|
||||
polygon
|
||||
kbool
|
||||
${OPENGL_LIBRARIES}
|
||||
${wxWidgets_LIBRARIES}
|
||||
${OPENGL_LIBRARIES}
|
||||
${GDI_PLUS_LIBRARIES}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue