Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openmesh-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenMesh
openmesh-python
Commits
be6fba09
There was a problem fetching the pipeline summary.
Commit
be6fba09
authored
7 years ago
by
Alexander Dielen
Browse files
Options
Downloads
Patches
Plain Diff
windows fixes
parent
ee0b852e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+17
-7
17 additions, 7 deletions
CMakeLists.txt
with
17 additions
and
7 deletions
CMakeLists.txt
+
17
−
7
View file @
be6fba09
...
...
@@ -7,19 +7,29 @@ set(OPENMESH_BUILD_PYTHON_BINDINGS OFF)
add_subdirectory
(
OpenMesh
)
add_subdirectory
(
pybind11
)
if
(
NOT WIN32
)
set_target_properties
(
OpenMeshCore OpenMeshTools PROPERTIES
EXCLUDE_FROM_ALL ON
EXCLUDE_FROM_DEFAULT_BUILD ON
)
endif
()
acg_append_files
(
HEADERS
"src/*.hh"
.
)
acg_append_files
(
SOURCES
"src/*.cc"
.
)
include_directories
(
${
OPENMESH_INCLUDE_DIRS
}
)
pybind11_add_module
(
openmesh
${
HEADERS
}
${
SOURCES
}
)
if
(
WIN32
)
target_link_libraries
(
openmesh PRIVATE OpenMeshCore
)
target_link_libraries
(
openmesh PRIVATE OpenMeshTools
)
target_compile_definitions
(
openmesh PRIVATE _USE_MATH_DEFINES
)
else
()
target_link_libraries
(
openmesh PRIVATE OpenMeshCoreStatic
)
target_link_libraries
(
openmesh PRIVATE OpenMeshToolsStatic
)
endif
()
enable_testing
()
add_test
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment