Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
a86eff56
Commit
a86eff56
authored
May 05, 2016
by
Kevin M. Godby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turns out IS_DIRECTORY needs an absolute path.
parent
a95f413c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vendor/CMakeLists.txt
vendor/CMakeLists.txt
+4
-4
No files found.
vendor/CMakeLists.txt
View file @
a86eff56
...
...
@@ -5,21 +5,21 @@
# Most of these libraries are used for running comparison benchmarks against
# other logging libraries.
if
(
IS_DIRECTORY
zf_log
)
if
(
IS_DIRECTORY
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/zf_log"
)
add_subdirectory
(
zf_log
)
endif
()
if
(
IS_DIRECTORY
glog
)
if
(
IS_DIRECTORY
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/glog"
)
add_subdirectory
(
glog
)
endif
()
if
(
IS_DIRECTORY
easyloggingpp
)
if
(
IS_DIRECTORY
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/easyloggingpp"
)
add_library
(
easylogging INTERFACE
)
set
(
SPDLOG_VENDORED_EASYLOGGING_ROOT
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/easyloggingpp"
CACHE INTERNAL
""
FORCE
)
target_include_directories
(
easylogging INTERFACE
"
${
SPDLOG_VENDORED_EASYLOGGING_ROOT
}
/src"
)
endif
()
if
(
IS_DIRECTORY
g3log
)
if
(
IS_DIRECTORY
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/g3log"
)
add_subdirectory
(
g3log
)
endif
()
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