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
1b7593f4
Commit
1b7593f4
authored
Aug 10, 2013
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed win32 builds.
parent
2134e7de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
17 deletions
+15
-17
CMakeLists.txt
common/CMakeLists.txt
+4
-2
CMakeLists.txt
cvpcb/CMakeLists.txt
+6
-8
CMakeLists.txt
pcbnew/CMakeLists.txt
+5
-7
No files found.
common/CMakeLists.txt
View file @
1b7593f4
...
...
@@ -5,6 +5,7 @@ include_directories(
./dialog_about
${
Boost_INCLUDE_DIR
}
${
CAIRO_INCLUDE_DIR
}
${
GLEW_INCLUDE_DIR
}
../3d-viewer
../pcbnew
../polygon
...
...
@@ -56,9 +57,10 @@ set(GAL_SRCS
add_library
(
gal STATIC
${
GAL_SRCS
}
)
add_dependencies
(
gal shader_headers
)
if
(
WIN32
)
# Only for win32 cross compilation using MXE
if
(
WIN32 AND MSYS
)
add_definitions
(
-DGLEW_STATIC
)
endif
(
WIN32
)
endif
(
WIN32
AND MSYS
)
set
(
COMMON_ABOUT_DLG_SRCS
dialog_about/AboutDialog_main.cpp
...
...
cvpcb/CMakeLists.txt
View file @
1b7593f4
...
...
@@ -94,18 +94,16 @@ target_link_libraries(cvpcb
common
bitmaps
polygon
gal
${
wxWidgets_LIBRARIES
}
${
OPENGL_LIBRARIES
}
${
GDI_PLUS_LIBRARIES
}
${
GLEW_LIBRARIES
}
${
CAIRO_LIBRARIES
}
)
target_link_libraries
(
cvpcb
gal
${
GLEW_LIBRARIES
}
${
CAIRO_LIBRARIES
}
)
if
(
WIN32
)
# Only for win32 cross compilation using MXE
if
(
WIN32 AND MSYS
)
target_link_libraries
(
cvpcb
opengl32
glu32
...
...
@@ -114,7 +112,7 @@ target_link_libraries(cvpcb
freetype
bz2
)
endif
(
WIN32
)
endif
(
WIN32
AND MSYS
)
###
# Add cvpcb as install target
...
...
pcbnew/CMakeLists.txt
View file @
1b7593f4
...
...
@@ -420,20 +420,18 @@ target_link_libraries(pcbnew
pcad2kicadpcb
polygon
bitmaps
gal
${
wxWidgets_LIBRARIES
}
${
OPENGL_LIBRARIES
}
${
GDI_PLUS_LIBRARIES
}
${
PYTHON_LIBRARIES
}
${
PCBNEW_EXTRA_LIBS
}
)
target_link_libraries
(
pcbnew
gal
${
GLEW_LIBRARIES
}
${
CAIRO_LIBRARIES
}
)
if
(
WIN32
)
# Only for win32 cross compilation using MXE
if
(
WIN32 AND MSYS
)
target_link_libraries
(
pcbnew
opengl32
glu32
...
...
@@ -442,7 +440,7 @@ target_link_libraries(pcbnew
freetype
bz2
)
endif
(
WIN32
)
endif
(
WIN32
AND MSYS
)
###
# Add pcbnew as install target
...
...
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