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
a01a7b91
Commit
a01a7b91
authored
Apr 03, 2014
by
Maciej Suminski
Committed by
Wayne Stambaugh
Apr 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Clang build error when OpenMP is not found.
parent
9b99ac2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CMakeLists.txt
pcbnew/CMakeLists.txt
+5
-1
No files found.
pcbnew/CMakeLists.txt
View file @
a01a7b91
...
...
@@ -536,8 +536,12 @@ if( USE_KIWAY_DLLS )
OUTPUT_NAME pcbnew
PREFIX
${
KIFACE_PREFIX
}
SUFFIX
${
KIFACE_SUFFIX
}
COMPILE_FLAGS
${
OpenMP_CXX_FLAGS
}
)
if
(
${
OPENMP_FOUND
}
)
set_target_properties
(
pcbnew_kiface PROPERTIES
COMPILE_FLAGS
${
OpenMP_CXX_FLAGS
}
)
endif
()
target_link_libraries
(
pcbnew_kiface
3d-viewer
pcbcommon
...
...
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