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
5f1d14fd
Commit
5f1d14fd
authored
Dec 10, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Condensed some CMake output about found libraries
parent
e5a8088a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
CMakeLists.txt
CMakeLists.txt
+1
-4
No files found.
CMakeLists.txt
View file @
5f1d14fd
...
...
@@ -41,8 +41,6 @@ include(CPack)
# Find dependencies:
find_package
(
OpenCV REQUIRED core
)
message
(
STATUS
"OpenCV include dir found at
${
OpenCV_INCLUDE_DIRS
}
"
)
message
(
STATUS
"OpenCV lib dir found at
${
OpenCV_LIB_DIR
}
"
)
if
(
MSVC
)
# The standard find_package for boost on Win finds the dynamic libs, so for dynamic linking to boost we need to #define:
...
...
@@ -58,9 +56,8 @@ endif()
set
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake
)
find_package
(
Eigen3 REQUIRED
)
message
(
STATUS
"Eigen3 found:
${
EIGEN3_FOUND
}
"
)
message
(
STATUS
"Eigen3 found:
${
EIGEN3_FOUND
}
, version:
${
EIGEN3_VERSION
}
"
)
message
(
STATUS
"Eigen3 include dir found at
${
EIGEN3_INCLUDE_DIR
}
"
)
message
(
STATUS
"Eigen3 version:
${
EIGEN3_VERSION
}
"
)
set
(
CEREAL_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/cereal-1.1.1/include"
)
set
(
glm_INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/3rdparty/glm"
)
...
...
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