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
95565cda
Commit
95565cda
authored
Jan 05, 2008
by
f3nix
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some small CMake fixes.
parent
97be0050
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
15 deletions
+16
-15
CMakeLists.txt
3d-viewer/CMakeLists.txt
+0
-1
CMakeLists.txt
CMakeLists.txt
+2
-0
CMakeLists.txt
kicad/minizip/CMakeLists.txt
+12
-12
CMakeLists.txt
pcbnew/CMakeLists.txt
+2
-2
No files found.
3d-viewer/CMakeLists.txt
View file @
95565cda
FIND_PACKAGE
(
OpenGL REQUIRED
)
IF
(
OPENGL_FOUND
)
MESSAGE
(
STATUS
"Check for installed OpenGL -- found"
)
...
...
CMakeLists.txt
View file @
95565cda
...
...
@@ -21,6 +21,8 @@ SET(CMAKE_EXE_LINKER_FLAGS_RELEASE "-s")
# http://www.wxwidgets.org/manuals/2.8/wx_librarieslist.html
SET
(
wxWidgets_USE_LIBS base core adv gl html net
)
# OpenGL support
SET
(
WXWINDOWS_USE_GL 1
)
# We need the Find package for wxWidgets to work.
FIND_PACKAGE
(
wxWidgets REQUIRED
)
...
...
kicad/minizip/CMakeLists.txt
View file @
95565cda
FIND_PACKAGE
(
ZLIB
)
FIND_PACKAGE
(
ZLIB REQUIRED
)
IF
(
ZLIB_FOUND
)
MESSAGE
(
STATUS
"Check for installed ZLIB -- found"
)
SET
(
MINIZIP_SRCS
ELSE
(
ZLIB_FOUND
)
MESSAGE
(
STATUS
"Check for installed zlib -- not found"
)
MESSAGE
(
FATAL_ERROR
"zlib was not found - it is required to build KiCad"
)
ENDIF
(
ZLIB_FOUND
)
SET
(
MINIZIP_SRCS
ioapi.c
minizip.c
zip.c
)
ADD_EXECUTABLE
(
minizip
${
MINIZIP_SRCS
}
)
ADD_EXECUTABLE
(
minizip
${
MINIZIP_SRCS
}
)
TARGET_LINK_LIBRARIES
(
minizip
${
ZLIB_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
minizip
${
ZLIB_LIBRARIES
}
)
INSTALL
(
TARGETS minizip RUNTIME DESTINATION bin
)
ELSE
(
ZLIB_FOUND
)
MESSAGE
(
STATUS
"Check for installed zlib -- not found"
)
MESSAGE
(
FATAL_ERROR
"zlib was not found - it is required to build KiCad"
)
ENDIF
(
ZLIB_FOUND
)
INSTALL
(
TARGETS minizip RUNTIME DESTINATION bin
)
pcbnew/CMakeLists.txt
View file @
95565cda
...
...
@@ -133,10 +133,10 @@ SET(PCBNEW_SRCS
via_edit.cpp
work.cpp
xchgmod.cpp
zones_by_polygon.cpp
zone_filling_algorithm.cpp
zones_by_polygon.cpp
# zones.cpp
)
zones_test_and_combine_areas.cpp
)
SET
(
PCBNEW_EXTRA_SRCS
../share/drawframe.cpp
...
...
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