Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
b90d657c
Commit
b90d657c
authored
Feb 08, 2012
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 921553
parent
822e5db5
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
CMakeLists.txt
3d-viewer/CMakeLists.txt
+1
-1
CMakeLists.txt
bitmaps_png/CMakeLists.txt
+1
-1
CMakeLists.txt
bitmaps_xpm/CMakeLists.txt
+1
-1
CMakeLists.txt
common/CMakeLists.txt
+2
-2
CMakeLists.txt
polygon/CMakeLists.txt
+1
-1
CMakeLists.txt
polygon/kbool/src/CMakeLists.txt
+1
-1
CMakeLists.txt
potrace/CMakeLists.txt
+1
-1
No files found.
3d-viewer/CMakeLists.txt
View file @
b90d657c
...
...
@@ -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
}
)
bitmaps_png/CMakeLists.txt
View file @
b90d657c
...
...
@@ -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
}
)
bitmaps_xpm/CMakeLists.txt
View file @
b90d657c
...
...
@@ -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
}
)
common/CMakeLists.txt
View file @
b90d657c
...
...
@@ -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
...
...
polygon/CMakeLists.txt
View file @
b90d657c
...
...
@@ -10,4 +10,4 @@ set(POLYGON_SRCS
polygon_test_point_inside.cpp
)
add_library
(
polygon
${
POLYGON_SRCS
}
)
add_library
(
polygon
STATIC
${
POLYGON_SRCS
}
)
polygon/kbool/src/CMakeLists.txt
View file @
b90d657c
...
...
@@ -18,4 +18,4 @@ set(KBOOL_SRCS
record.cpp
scanbeam.cpp
)
add_library
(
kbool
${
KBOOL_SRCS
}
)
add_library
(
kbool
STATIC
${
KBOOL_SRCS
}
)
potrace/CMakeLists.txt
View file @
b90d657c
...
...
@@ -13,4 +13,4 @@ set(POTRACE_SRCS
trace.cpp
)
add_library
(
potrace
${
POTRACE_SRCS
}
)
add_library
(
potrace
STATIC
${
POTRACE_SRCS
}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment