Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
a87a8e5a
Commit
a87a8e5a
authored
Nov 18, 2015
by
Jan Möbius
Browse files
Merge branch 'master' of
https://www.graphics.rwth-aachen.de:9000/OpenFlipper-Free/OpenFlipper-Free
parents
fe5f4038
6da401db
Changes
3
Hide whitespace changes
Inline
Side-by-side
OpenFlipper/PluginLib/CMakeLists.txt
View file @
a87a8e5a
...
...
@@ -26,8 +26,17 @@ foreach ( OF_PACKAGE ${OF_PACKAGES})
list
(
APPEND PACKAGE_INCLUDES
"
${
CMAKE_SOURCE_DIR
}
/
${
OF_PACKAGES
}
"
)
endforeach
()
# search all lib directories in packages for OpenFlipper
file
(
GLOB PACKAGE_DIRS
"
${
CMAKE_SOURCE_DIR
}
/Package-*"
)
include_directories
(
..
${
PACKAGE_DIRS
}
${
OPENMESH_INCLUDE_DIRS
}
${
CMAKE_SOURCE_DIR
}
${
CMAKE_CURRENT_SOURCE_DIR
}
...
...
OpenFlipper/cmake/plugin.cmake
View file @
a87a8e5a
...
...
@@ -455,8 +455,16 @@ function (_build_openflipper_plugin plugin)
list
(
APPEND PACKAGE_INCLUDES
"
${
CMAKE_SOURCE_DIR
}
/
${
OF_PACKAGES
}
"
)
endforeach
()
# search all lib directories in packages for OpenFlipper
file
(
GLOB PACKAGE_DIRS
"
${
CMAKE_SOURCE_DIR
}
/Package-*"
)
include_directories
(
.
${
PACKAGE_DIRS
}
${
CMAKE_SOURCE_DIR
}
${
OPENMESH_INCLUDE_DIRS
}
${
CMAKE_CURRENT_SOURCE_DIR
}
...
...
cmake/FindIsoEx.cmake
View file @
a87a8e5a
...
...
@@ -12,8 +12,18 @@ IF (ISOEX_INCLUDE_DIRS)
SET
(
ISOEX_FIND_QUIETLY TRUE
)
ENDIF
(
ISOEX_INCLUDE_DIRS
)
# search all lib directories in packages for OpenFlipper
file
(
GLOB _libdirs
"
${
CMAKE_SOURCE_DIR
}
/libs"
"
${
CMAKE_SOURCE_DIR
}
/Package-*/libs"
)
FIND_PATH
(
ISOEX_INCLUDE_DIRS IsoEx/Extractors/MarchingCubesT.hh
PATHS
"
${
CMAKE_SOURCE_DIR
}
/libs"
)
PATHS
"
${
_libdirs
}
"
"
${
CMAKE_SOURCE_DIR
}
/libs"
)
add_definitions
(
-DISOEXDLL -DUSEISOEX
)
...
...
Write
Preview
Supports
Markdown
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