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
amdis
amdis-core
Commits
4ee463b4
Commit
4ee463b4
authored
Sep 30, 2018
by
Praetorius, Simon
Browse files
fmt library added differently
parent
d2791619
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
4ee463b4
...
...
@@ -12,7 +12,7 @@ include(DuneMacros)
# start a dune project with information from dune.module
dune_project
()
dune_enable_all_packages
(
MODULE_LIBRARIES amdis
)
dune_enable_all_packages
(
MODULE_LIBRARIES amdis
fmt
)
add_subdirectory
(
"src"
)
add_subdirectory
(
"test"
)
...
...
@@ -21,5 +21,7 @@ add_subdirectory("doc")
add_subdirectory
(
"cmake/modules"
)
add_subdirectory
(
"externals"
)
target_link_libraries
(
amdis fmt
)
# finalize the dune project, e.g. generating config.h etc.
finalize_dune_project
(
GENERATE_CONFIG_H_CMAKE
)
externals/CMakeLists.txt
View file @
4ee463b4
target_include_directories
(
amdis PUBLIC
$<BUILD_INTERFACE:
${
CMAKE_SOURCE_DIR
}
/externals/fmt/include>
)
dune_library_add_sources
(
amdis SOURCES
dune_library_add_sources
(
fmt SOURCES
fmt/src/format.cc
fmt/src/posix.cc
)
fmt/src/posix.cc
)
target_include_directories
(
fmt PUBLIC
$<BUILD_INTERFACE:
${
CMAKE_SOURCE_DIR
}
/externals/fmt/include>
)
install
(
FILES
fmt/include/fmt/core.h
...
...
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