Skip to content
Snippets Groups Projects
Commit 1be31d66 authored by Pascal Palenda's avatar Pascal Palenda
Browse files

Remove TEST_INPLACE option

parent c3e05cba
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,6 @@ with section("parse"):
},
'spelling': 'ihta_add_library',
'kwargs': {
'TEST_INPLACE' : 0,
'TEST_INTERNALS' : 0,
'NAMESPACE' : 1,
'NAME' : 1,
......
......@@ -23,7 +23,7 @@ include_guard ()
#]=======================================================================]
macro (ihta_add_library)
set (options TEST_INPLACE TEST_INTERNALS)
set (options TEST_INTERNALS)
set (
oneValueArgs
NAMESPACE
......@@ -74,7 +74,7 @@ macro (ihta_add_library)
message (FATAL_ERROR "ihta_add_library requires to set either a NAMESPACE or an IDE_FOLDER")
endif ()
if (IHTA_ADD_LIB_TEST_INPLACE OR IHTA_ADD_LIB_TEST_INTERNALS)
if (IHTA_ADD_LIB_TEST_INTERNALS)
set (IHTA_ADD_LIB_TARGET ${IHTA_ADD_LIB_NAME}${IHTA_ADD_LIB_OBJECT_LIB_POSTFIX})
# Create an object library
......@@ -136,7 +136,7 @@ macro (ihta_add_library)
GroupSourcesByFolder (${IHTA_ADD_LIB_TARGET})
if (IHTA_ADD_LIB_TEST_SOURCES)
if (IHTA_ADD_LIB_TEST_INPLACE OR IHTA_ADD_LIB_TEST_INTERNALS)
if (IHTA_ADD_LIB_TEST_INTERNALS)
set (IHTA_ADD_LIB_TEST_TARGET ${IHTA_ADD_LIB_NAME}UnitTest)
ihta_add_test (
NAME ${IHTA_ADD_LIB_TEST_TARGET}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment