Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
SuperElastix
Commits
7cbb01e9
Commit
7cbb01e9
authored
Feb 01, 2017
by
Kasper Marstal
Browse files
ENH: Fix internal module build system
parent
7eda479c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Modules/ComponentInterface/ModuleComponentInterface.cmake
View file @
7cbb01e9
...
...
@@ -35,7 +35,8 @@ set( ${MODULE}_TEST_SOURCE_FILES
${${
MODULE
}
_SOURCE_DIR
}
/test/selxNetworkBuilderTest.cxx
)
set
(
${
MODULE
}
_LIBRARIES
set
(
${
MODULE
}
_LIBRARIES
ModuleComponentInterface
)
set
(
${
MODULE
}
_MODULE_DEPENDENCIES
...
...
Modules/ComponentInterface/include/selxComponentSelector.hxx
View file @
7cbb01e9
...
...
@@ -49,7 +49,8 @@ template <class ComponentList>
ComponentSelector
<
ComponentList
>::
ComponentSelector
()
{
m_PossibleComponents
=
std
::
list
<
ComponentBase
::
Pointer
>
();
m_PossibleComponents
=
ContructComponentsFromTypeList
<
ComponentList
>::
fill
(
m_PossibleComponents
,
std
::
string
(
""
));
std
::
string
name
=
"name"
;
m_PossibleComponents
=
ContructComponentsFromTypeList
<
ComponentList
>::
fill
(
m_PossibleComponents
,
name
);
//std::list< itk::LightObject::Pointer > allobjects
// = itk::ObjectFactoryBase::CreateAllInstance( "ComponentBase" );
...
...
Modules/FileIO/ModuleFileIO.cmake
View file @
7cbb01e9
...
...
@@ -30,9 +30,5 @@ set( ${MODULE}_TEST_SOURCE_FILES
${${
MODULE
}
_SOURCE_DIR
}
/test/selxAnyFileIOTest.cxx
)
set
(
${
MODULE
}
_LIBRARIES
${
MODULE
}
)
set
(
${
MODULE
}
_MODULE_DEPENDENCIES
)
SuperElastixConfig.cmake.in
View file @
7cbb01e9
set( SUPERELASTIX_USE_FILE ${CMAKE_BINARY_DIR}/UseSuperElastix.cmake )
# Add include directories needed to use SuperElastix
set( SUPERELASTIX_INCLUDE_DIRS @SUPERELASTIX_INCLUDE_DIRS@ )
...
...
Testing/CMakeLists.txt
View file @
7cbb01e9
...
...
@@ -72,6 +72,7 @@ configure_file(
ESCAPE_QUOTES
)
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
add_library
(
DataManager selxDataManager.cxx
)
...
...
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