Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
9ea01877
Commit
9ea01877
authored
Jul 28, 2015
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some old CMake comments. Changed minimum CMake version of examples to 2.8.10.
parent
fdf5c2bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
CMakeLists.txt
CMakeLists.txt
+1
-0
examples/CMakeLists.txt
examples/CMakeLists.txt
+1
-4
No files found.
CMakeLists.txt
View file @
9ea01877
...
@@ -95,6 +95,7 @@ include_directories("include")
...
@@ -95,6 +95,7 @@ include_directories("include")
include_directories
(
${
CEREAL_INCLUDE_DIR
}
)
include_directories
(
${
CEREAL_INCLUDE_DIR
}
)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
include_directories
(
${
OpenCV_INCLUDE_DIRS
}
)
include_directories
(
${
OpenCV_INCLUDE_DIRS
}
)
#include_directories(${EIGEN3_INCLUDE_DIR})
# Custom target for the library, to make the headers show up in IDEs:
# Custom target for the library, to make the headers show up in IDEs:
add_custom_target
(
eos SOURCES
${
HEADERS
}
)
add_custom_target
(
eos SOURCES
${
HEADERS
}
)
...
...
examples/CMakeLists.txt
View file @
9ea01877
project
(
examples
)
project
(
examples
)
cmake_minimum_required
(
VERSION 2.8.
7
)
cmake_minimum_required
(
VERSION 2.8.
10
)
# The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
# The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
find_package
(
OpenCV 2.4.3 REQUIRED core imgproc highgui
)
find_package
(
OpenCV 2.4.3 REQUIRED core imgproc highgui
)
...
@@ -13,12 +13,9 @@ else(Boost_FOUND)
...
@@ -13,12 +13,9 @@ else(Boost_FOUND)
message
(
FATAL_ERROR
"Boost not found"
)
message
(
FATAL_ERROR
"Boost not found"
)
endif
()
endif
()
#include_directories(${eos_SOURCE_DIR})
# Model fitting (affine cam & shape to landmarks) example:
# Model fitting (affine cam & shape to landmarks) example:
add_executable
(
fit-model fit-model.cpp
)
add_executable
(
fit-model fit-model.cpp
)
target_link_libraries
(
fit-model
${
OpenCV_LIBS
}
${
Boost_LIBRARIES
}
)
target_link_libraries
(
fit-model
${
OpenCV_LIBS
}
${
Boost_LIBRARIES
}
)
# TODO Add dependency to library-target??
# Converts a CVSSP .scm Morphable Model to a cereal binary file:
# Converts a CVSSP .scm Morphable Model to a cereal binary file:
add_executable
(
scm-to-cereal scm-to-cereal.cpp
)
add_executable
(
scm-to-cereal scm-to-cereal.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