Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BLOT Valentin
QuasiAffineTransform
Commits
b073d84f
Commit
b073d84f
authored
Dec 04, 2017
by
Valentin Blot
Browse files
* new Makefile
* inclusion of libvol
parent
6836ce11
Changes
62
Hide whitespace changes
Inline
Side-by-side
Makefile
0 → 100644
View file @
b073d84f
SRC_COMMON
:=
$(
wildcard
QuasiAffineTransform/common/
*
.cpp
)
HDR_COMMON
:=
$(
wildcard
QuasiAffineTransform/common/
*
.hpp
)
OBJ_COMMON
:=
$(SRC_COMMON:.cpp=.o)
SRC_2D
:=
$(
wildcard
QuasiAffineTransform/2D/
*
.cpp
)
HDR_2D
:=
$(
wildcard
QuasiAffineTransform/2D/
*
.hpp
)
OBJ_2D
:=
$(SRC_2D:.cpp=.o)
SRC_3D
:=
$(
wildcard
QuasiAffineTransform/3D/
*
.cpp
)
HDR_3D
:=
$(
wildcard
QuasiAffineTransform/3D/
*
.hpp
)
OBJ_3D
:=
$(SRC_3D:.cpp=.o)
SRC_LIBVOL
:=
$(
wildcard
libvol/
*
.cpp
)
HDR_LIBVOL
:=
$(
wildcard
libvol/
*
.hpp
)
OBJ_LIBVOL
:=
$(SRC_LIBVOL:.cpp=.o)
CXXFLAGS
:=
`
pkg-config
--cflags
ImageMagick++
`
-Ilibvol
LDLIBS
:=
`
pkg-config
--libs
ImageMagick++
`
-lstdc
++
-lm
all
:
qat-2D qat-3D
qat-2D
:
QuasiAffineTransform/2D/qat-2D
cp
$<
$@
qat-3D
:
QuasiAffineTransform/3D/qat-3D
cp
$<
$@
QuasiAffineTransform/2D/qat-2D
:
$(OBJ_2D) $(OBJ_COMMON)
QuasiAffineTransform/3D/qat-3D
:
$(OBJ_3D) $(OBJ_COMMON) $(OBJ_LIBVOL)
QuasiAffineTransform/common/%.o
:
$(SRC_COMMON) $(HDR_COMMON)
QuasiAffineTransform/2D/%.o
:
$(SRC_2D) $(HDR_2D) $(HDR_COMMON)
QuasiAffineTransform/3D/%.o
:
$(SRC_3D) $(HDR_3D) $(HDR_COMMON)
libvol/%.o
:
$(SRC_LIBVOL) $(HDR_LIBVOL)
clean
:
$(RM)
$(OBJ_COMMON)
$(OBJ_2D)
$(OBJ_3D)
$(OBJ_LIBVOL)
QuasiAffineTransform/2D/qat-2D QuasiAffineTransform/2D/qat-3D qat-2D qat-3D
src
/2D/image.cpp
→
QuasiAffineTransform
/2D/image.cpp
View file @
b073d84f
File moved
src
/2D/image.hpp
→
QuasiAffineTransform
/2D/image.hpp
View file @
b073d84f
File moved
src
/2D/matrix2x2.cpp
→
QuasiAffineTransform
/2D/matrix2x2.cpp
View file @
b073d84f
File moved
src
/2D/matrix2x2.hpp
→
QuasiAffineTransform
/2D/matrix2x2.hpp
View file @
b073d84f
File moved
src
/2D/paving.cpp
→
QuasiAffineTransform
/2D/paving.cpp
View file @
b073d84f
File moved
src
/2D/paving.hpp
→
QuasiAffineTransform
/2D/paving.hpp
View file @
b073d84f
File moved
src
/2D/qat-2D.cpp
→
QuasiAffineTransform
/2D/qat-2D.cpp
View file @
b073d84f
File moved
src
/2D/qat.cpp
→
QuasiAffineTransform
/2D/qat.cpp
View file @
b073d84f
File moved
src
/2D/qat.hpp
→
QuasiAffineTransform
/2D/qat.hpp
View file @
b073d84f
File moved
src
/2D/vector2d.cpp
→
QuasiAffineTransform
/2D/vector2d.cpp
View file @
b073d84f
File moved
src
/2D/vector2d.hpp
→
QuasiAffineTransform
/2D/vector2d.hpp
View file @
b073d84f
File moved
src
/3D/image3d.cpp
→
QuasiAffineTransform
/3D/image3d.cpp
View file @
b073d84f
File moved
src
/3D/image3d.hpp
→
QuasiAffineTransform
/3D/image3d.hpp
View file @
b073d84f
...
...
@@ -5,7 +5,7 @@
#include "../common/color.hpp"
#include <string>
#include <vol.h>
#include <vol.h
pp
>
class
Image3D
{
...
...
src
/3D/matrix3x3.hpp
→
QuasiAffineTransform
/3D/matrix3x3.hpp
View file @
b073d84f
File moved
src
/3D/paving3d.cpp
→
QuasiAffineTransform
/3D/paving3d.cpp
View file @
b073d84f
File moved
src
/3D/paving3d.hpp
→
QuasiAffineTransform
/3D/paving3d.hpp
View file @
b073d84f
File moved
src
/3D/qat-3D.cpp
→
QuasiAffineTransform
/3D/qat-3D.cpp
View file @
b073d84f
File moved
src
/3D/qat3d.cpp
→
QuasiAffineTransform
/3D/qat3d.cpp
View file @
b073d84f
File moved
src
/3D/qat3d.hpp
→
QuasiAffineTransform
/3D/qat3d.hpp
View file @
b073d84f
File moved
Prev
1
2
3
4
Next
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