Commit b90d657c authored by Dick Hollenbeck's avatar Dick Hollenbeck

fix bug 921553

parent 822e5db5
......@@ -19,4 +19,4 @@ set(3D-VIEWER_SRCS
trackball.cpp
)
add_library(3d-viewer ${3D-VIEWER_SRCS})
add_library(3d-viewer STATIC ${3D-VIEWER_SRCS})
......@@ -676,5 +676,5 @@ foreach( bmn ${BMAPS_BIG} )
endforeach()
#add_library( bitmaps SHARED ${CPP_LIST} )
add_library( bitmaps ${CPP_LIST} )
add_library( bitmaps STATIC ${CPP_LIST} )
......@@ -449,4 +449,4 @@ foreach(LOOP_VAR ${BITMAP_SRCS})
set_source_files_properties(${CPP_BITMAP} PROPERTIES COMPILE_FLAGS -DXPMMAIN)
endforeach(LOOP_VAR)
add_library(bitmaps ${CPP_BITMAPS})
add_library(bitmaps STATIC ${CPP_BITMAPS})
......@@ -77,7 +77,7 @@ set(COMMON_SRCS
zoom.cpp
)
add_library(common ${COMMON_SRCS})
add_library(common STATIC ${COMMON_SRCS})
set(PCB_COMMON_SRCS
base_screen.cpp
......@@ -125,7 +125,7 @@ set_source_files_properties( ${PCB_COMMON_SRCS} PROPERTIES
COMPILE_DEFINITIONS "PCBNEW"
)
add_library(pcbcommon ${PCB_COMMON_SRCS})
add_library(pcbcommon STATIC ${PCB_COMMON_SRCS})
# auto-generate netlist_lexer.h and netlist_keywords.cpp
......
......@@ -10,4 +10,4 @@ set(POLYGON_SRCS
polygon_test_point_inside.cpp
)
add_library(polygon ${POLYGON_SRCS})
add_library(polygon STATIC ${POLYGON_SRCS})
......@@ -18,4 +18,4 @@ set(KBOOL_SRCS
record.cpp
scanbeam.cpp)
add_library(kbool ${KBOOL_SRCS})
add_library(kbool STATIC ${KBOOL_SRCS})
......@@ -13,4 +13,4 @@ set(POTRACE_SRCS
trace.cpp
)
add_library(potrace ${POTRACE_SRCS})
add_library(potrace STATIC ${POTRACE_SRCS})
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