Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
616b2a8a
Commit
616b2a8a
authored
Aug 10, 2010
by
Alexander Wiebel
Browse files
[CHANGE] moved nifti to ext
* adapted corresponding classes * adapted build system
parent
0fe14146
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
5 additions
and
5 deletions
+5
-5
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
src/dataHandler/io/CMakeLists.txt
src/dataHandler/io/CMakeLists.txt
+0
-1
src/dataHandler/io/WReaderNIfTI.h
src/dataHandler/io/WReaderNIfTI.h
+1
-1
src/ext/CMakeLists.txt
src/ext/CMakeLists.txt
+2
-1
src/ext/nifti/CMakeLists.txt
src/ext/nifti/CMakeLists.txt
+0
-0
src/ext/nifti/nifti1.h
src/ext/nifti/nifti1.h
+0
-0
src/ext/nifti/nifti1_io.c
src/ext/nifti/nifti1_io.c
+0
-0
src/ext/nifti/nifti1_io.h
src/ext/nifti/nifti1_io.h
+0
-0
src/ext/nifti/znzlib.c
src/ext/nifti/znzlib.c
+0
-0
src/ext/nifti/znzlib.h
src/ext/nifti/znzlib.h
+0
-0
src/modules/writeNIfTI/WMWriteNIfTI.cpp
src/modules/writeNIfTI/WMWriteNIfTI.cpp
+1
-1
No files found.
src/CMakeLists.txt
View file @
616b2a8a
...
@@ -269,7 +269,7 @@ ADD_CUSTOM_TARGET( numCores
...
@@ -269,7 +269,7 @@ ADD_CUSTOM_TARGET( numCores
FILE
(
GLOB_RECURSE STYLE_CPP
${
PROJECT_SOURCE_DIR
}
/*.cpp
)
FILE
(
GLOB_RECURSE STYLE_CPP
${
PROJECT_SOURCE_DIR
}
/*.cpp
)
FILE
(
GLOB_RECURSE STYLE_H
${
PROJECT_SOURCE_DIR
}
/*.h
)
FILE
(
GLOB_RECURSE STYLE_H
${
PROJECT_SOURCE_DIR
}
/*.h
)
# Set dirs to exclude from stylecheck
# Set dirs to exclude from stylecheck
SET
(
EXCLUDE_DIRS
"/
dataHandler/io
/nifti/;/dataHandler/io/biosig/;/dataHandler/io/biosigWin/;/dataHandler/io/biosig/XMLParser/;/dataHandler/io/biosigWin/XMLParser/;/ext/libeep/avr/;/ext/libeep/cnt/;/ext/libeep/eep/;/common/platformDependent/visualStudio/;/modules/lic/fibernavigator/;/modules/lic/fantom/"
)
SET
(
EXCLUDE_DIRS
"/
ext
/nifti/;/dataHandler/io/biosig/;/dataHandler/io/biosigWin/;/dataHandler/io/biosig/XMLParser/;/dataHandler/io/biosigWin/XMLParser/;/ext/libeep/avr/;/ext/libeep/cnt/;/ext/libeep/eep/;/common/platformDependent/visualStudio/;/modules/lic/fibernavigator/;/modules/lic/fantom/"
)
FOREACH
(
dirname
${
EXCLUDE_DIRS
}
)
FOREACH
(
dirname
${
EXCLUDE_DIRS
}
)
FILE
(
GLOB EXCLUDE_H
${
PROJECT_SOURCE_DIR
}${
dirname
}
*.h
)
FILE
(
GLOB EXCLUDE_H
${
PROJECT_SOURCE_DIR
}${
dirname
}
*.h
)
FILE
(
GLOB EXCLUDE_CPP
${
PROJECT_SOURCE_DIR
}${
dirname
}
*.cpp
)
FILE
(
GLOB EXCLUDE_CPP
${
PROJECT_SOURCE_DIR
}${
dirname
}
*.cpp
)
...
...
src/dataHandler/io/CMakeLists.txt
View file @
616b2a8a
ADD_SUBDIRECTORY
(
nifti
)
IF
(
NOT CMAKE_GENERATOR MATCHES
"Visual Studio"
)
IF
(
NOT CMAKE_GENERATOR MATCHES
"Visual Studio"
)
ADD_SUBDIRECTORY
(
biosig
)
ADD_SUBDIRECTORY
(
biosig
)
ELSE
()
ELSE
()
...
...
src/dataHandler/io/WReaderNIfTI.h
View file @
616b2a8a
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
#include "../WDataSet.h"
#include "../WDataSet.h"
#include "../../common/math/WMatrix.h"
#include "../../common/math/WMatrix.h"
#include "nifti/nifti1_io.h"
#include "
../../ext/
nifti/nifti1_io.h"
/**
/**
* Reader for the NIfTI file format. For NIfTI just see http://nifti.nimh.nih.gov/.
* Reader for the NIfTI file format. For NIfTI just see http://nifti.nimh.nih.gov/.
...
...
src/ext/CMakeLists.txt
View file @
616b2a8a
# Needed because libeep has includes of form #include <cnt/cnt.h>
# Needed because libeep has includes of form #include <cnt/cnt.h>
INCLUDE_DIRECTORIES
(
${
PROJECT_SOURCE_DIR
}
/ext/libeep
)
INCLUDE_DIRECTORIES
(
${
PROJECT_SOURCE_DIR
}
/ext/libeep
)
ADD_SUBDIRECTORY
(
libeep
)
ADD_SUBDIRECTORY
(
libeep
)
\ No newline at end of file
ADD_SUBDIRECTORY
(
nifti
)
\ No newline at end of file
src/
dataHandler/io
/nifti/CMakeLists.txt
→
src/
ext
/nifti/CMakeLists.txt
View file @
616b2a8a
File moved
src/
dataHandler/io
/nifti/nifti1.h
→
src/
ext
/nifti/nifti1.h
View file @
616b2a8a
File moved
src/
dataHandler/io
/nifti/nifti1_io.c
→
src/
ext
/nifti/nifti1_io.c
View file @
616b2a8a
File moved
src/
dataHandler/io
/nifti/nifti1_io.h
→
src/
ext
/nifti/nifti1_io.h
View file @
616b2a8a
File moved
src/
dataHandler/io
/nifti/znzlib.c
→
src/
ext
/nifti/znzlib.c
View file @
616b2a8a
File moved
src/
dataHandler/io
/nifti/znzlib.h
→
src/
ext
/nifti/znzlib.h
View file @
616b2a8a
File moved
src/modules/writeNIfTI/WMWriteNIfTI.cpp
View file @
616b2a8a
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#include "../../kernel/WKernel.h"
#include "../../kernel/WKernel.h"
#include "../../common/math/WPosition.h"
#include "../../common/math/WPosition.h"
#include "../../common/math/WVector3D.h"
#include "../../common/math/WVector3D.h"
#include "../../
dataHandler/io
/nifti/nifti1_io.h"
#include "../../
ext
/nifti/nifti1_io.h"
#include "WMWriteNIfTI.h"
#include "WMWriteNIfTI.h"
// This line is needed by the module loader to actually find your module.
// This line is needed by the module loader to actually find your module.
...
...
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