Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
704e7772
Commit
704e7772
authored
Feb 11, 2021
by
Steffen Schotthöfer
Browse files
fixed merge mistake
Former-commit-id:
ce627b7e
parent
109f7001
Changes
2
Hide whitespace changes
Inline
Side-by-side
code/CMakeLists.txt
View file @
704e7772
...
...
@@ -74,6 +74,13 @@ add_compile_definitions( GIT_HASH="${GIT_HASH}" )
### BUILD KIT-RT ################################
file
(
GLOB_RECURSE SRCS RELATIVE
${
CMAKE_SOURCE_DIR
}
"src/*.cpp"
"include/*.h"
)
set
(
EXCLUDE_DIR
"/gui/"
)
foreach
(
TMP_PATH
${
SRCS
}
)
string
(
FIND
${
TMP_PATH
}
${
EXCLUDE_DIR
}
EXCLUDE_DIR_FOUND
)
if
(
NOT
${
EXCLUDE_DIR_FOUND
}
EQUAL -1
)
list
(
REMOVE_ITEM SRCS
${
TMP_PATH
}
)
endif
()
endforeach
(
TMP_PATH
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/include
)
add_executable
(
${
CMAKE_PROJECT_NAME
}
${
SRCS
}
${
EXT_SRCS
}
)
target_link_libraries
(
${
CMAKE_PROJECT_NAME
}
${
CORE_LIBRARIES
}
)
...
...
code/tests/test_cases.cpp
View file @
704e7772
...
...
@@ -190,7 +190,6 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) {
}
}
/*
TEST_CASE
(
"CSD_SN_FP_SOLVER"
,
"[validation_tests]"
)
{
std
::
string
csd_sn_fileDir
=
"input/validation_tests/CSD_SN_FP_solver/"
;
SECTION
(
"waterphantom 1D"
)
{
...
...
@@ -260,7 +259,7 @@ TEST_CASE( "CSD_SN_FP_SH_2D_SOLVER", "[validation_tests]" ) {
REQUIRE
(
errorWithinBounds
);
}
}
*/
// --- Validation Tests Output ---
void
tokenize
(
std
::
string
const
&
str
,
const
char
delim
,
std
::
vector
<
std
::
string
>&
out
)
{
size_t
start
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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