Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
dorie
dorie
Commits
6456010e
Commit
6456010e
authored
Feb 01, 2019
by
Santiago Ospina De Los Ríos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CMake] Use conforming name structure for targets and libs
parent
ca865a33
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
dune/dorie/CMakeLists.txt
dune/dorie/CMakeLists.txt
+3
-3
dune/dorie/model/richards/impl/CMakeLists.txt
dune/dorie/model/richards/impl/CMakeLists.txt
+2
-2
dune/dorie/model/transport/impl/CMakeLists.txt
dune/dorie/model/transport/impl/CMakeLists.txt
+2
-2
No files found.
dune/dorie/CMakeLists.txt
View file @
6456010e
...
...
@@ -5,11 +5,11 @@ if(dune-testtools_FOUND)
endif
()
add_executable
(
"richards"
richards.cc
)
dune_target_link_libraries
(
richards richards
-impl
${
DUNE_LIBS
}
spdlog
)
dune_target_link_libraries
(
richards
dorie-
richards
${
DUNE_LIBS
}
spdlog
)
add_executable
(
"transport"
transport.cc
)
dune_target_link_libraries
(
transport richards
-impl
${
DUNE_LIBS
}
spdlog
)
dune_target_link_libraries
(
transport transport
-impl
${
DUNE_LIBS
}
spdlog
)
dune_target_link_libraries
(
transport
dorie-
richards
${
DUNE_LIBS
}
spdlog
)
dune_target_link_libraries
(
transport
dorie-
transport
${
DUNE_LIBS
}
spdlog
)
add_custom_target
(
"dorie"
DEPENDS richards transport
)
...
...
dune/dorie/model/richards/impl/CMakeLists.txt
View file @
6456010e
add_library
(
richards
-impl
STATIC
add_library
(
dorie-
richards STATIC
sim_yasp_2_1.cc
sim_yasp_2_2.cc
sim_ug_2_1.cc
...
...
@@ -12,7 +12,7 @@ add_library(richards-impl STATIC
sim_ug_3_2.cc
sim_ug_3_3.cc
)
target_link_libraries
(
richards
-impl
target_link_libraries
(
dorie-
richards
PUBLIC
spdlog
)
\ No newline at end of file
dune/dorie/model/transport/impl/CMakeLists.txt
View file @
6456010e
add_library
(
transport
-impl
STATIC
add_library
(
dorie-
transport STATIC
sim_yasp_2_0.cc
sim_yasp_2_1.cc
sim_yasp_2_2.cc
...
...
@@ -17,7 +17,7 @@ add_library(transport-impl STATIC
sim_ug_3_3.cc
)
target_link_libraries
(
transport
-impl
target_link_libraries
(
dorie-
transport
PUBLIC
spdlog
)
\ No newline at end of file
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