Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KennethVanhoey
CGoGN
Commits
3b0b14d3
Commit
3b0b14d3
authored
Jul 11, 2014
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgoten CMakeLists moving
parent
6fea2916
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
79 deletions
+72
-79
Apps/Examples/CMakeLists.txt
Apps/Examples/CMakeLists.txt
+72
-0
Apps/Examples/Debug/CMakeLists.txt
Apps/Examples/Debug/CMakeLists.txt
+0
-79
No files found.
Apps/Examples/
Release/
CMakeLists.txt
→
Apps/Examples/CMakeLists.txt
View file @
3b0b14d3
...
...
@@ -7,11 +7,7 @@ project(examples)
# define includes path
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
${
CGoGN_ROOT_DIR
}
/include
${
CGoGN_EXT_INCLUDES
}
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
# define libs path
#IF(WIN32)
...
...
@@ -23,54 +19,54 @@ include_directories(
#define exec to compile
QT4_WRAP_CPP
(
frame_manip_moc
../
frame_manip.h
)
add_executable
(
frame_manip
../
frame_manip.cpp
${
frame_manip_moc
}
)
QT4_WRAP_CPP
(
frame_manip_moc frame_manip.h
)
add_executable
(
frame_manip frame_manip.cpp
${
frame_manip_moc
}
)
target_link_libraries
(
frame_manip
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
texturesExample_moc
../
texturesExample.h
)
add_executable
(
texturesExample
../
texturesExample.cpp
${
texturesExample_moc
}
)
QT4_WRAP_CPP
(
texturesExample_moc texturesExample.h
)
add_executable
(
texturesExample texturesExample.cpp
${
texturesExample_moc
}
)
target_link_libraries
(
texturesExample
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleMap3_moc
../
simpleMap3.h
)
add_executable
(
simpleMap3
../
simpleMap3.cpp
${
simpleMap3_moc
}
)
QT4_WRAP_CPP
(
simpleMap3_moc simpleMap3.h
)
add_executable
(
simpleMap3 simpleMap3.cpp
${
simpleMap3_moc
}
)
target_link_libraries
(
simpleMap3
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleGMap2_moc
../
simpleGMap2.h
)
add_executable
(
simpleGMap2
../
simpleGMap2.cpp
${
simpleGMap2_moc
}
)
QT4_WRAP_CPP
(
simpleGMap2_moc simpleGMap2.h
)
add_executable
(
simpleGMap2 simpleGMap2.cpp
${
simpleGMap2_moc
}
)
target_link_libraries
(
simpleGMap2
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleGMap3_moc
../
simpleGMap3.h
)
add_executable
(
simpleGMap3
../
simpleGMap3.cpp
${
simpleGMap3_moc
}
)
QT4_WRAP_CPP
(
simpleGMap3_moc simpleGMap3.h
)
add_executable
(
simpleGMap3 simpleGMap3.cpp
${
simpleGMap3_moc
}
)
target_link_libraries
(
simpleGMap3
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
extrusionView_moc
../
extrusionView.h
)
add_executable
(
extrusionView
../
extrusionView.cpp
${
extrusionView_moc
}
)
QT4_WRAP_CPP
(
extrusionView_moc extrusionView.h
)
add_executable
(
extrusionView extrusionView.cpp
${
extrusionView_moc
}
)
target_link_libraries
(
extrusionView
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
viewer_ui
../
viewer.ui
)
QT4_WRAP_CPP
(
viewer_moc
../
viewer.h
)
add_executable
(
viewer
../
viewer.cpp
${
viewer_moc
}
${
viewer_ui
}
)
QT4_WRAP_UI
(
viewer_ui viewer.ui
)
QT4_WRAP_CPP
(
viewer_moc viewer.h
)
add_executable
(
viewer viewer.cpp
${
viewer_moc
}
${
viewer_ui
}
)
target_link_libraries
(
viewer
${
CGoGN_LIBS
}
${
NUMERICAL_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
clipping_ui
../
clipping.ui
)
QT4_WRAP_CPP
(
clipping_moc
../
clipping.h
)
add_executable
(
clipping
../
clipping.cpp
${
clipping_ui
}
${
clipping_moc
}
)
QT4_WRAP_UI
(
clipping_ui clipping.ui
)
QT4_WRAP_CPP
(
clipping_moc clipping.h
)
add_executable
(
clipping clipping.cpp
${
clipping_ui
}
${
clipping_moc
}
)
target_link_libraries
(
clipping
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
volumeExplorer_ui
../
volumeExplorer.ui
)
QT4_WRAP_CPP
(
volumeExplorer_moc
../
volumeExplorer.h
)
add_executable
(
volumeExplorer
../
volumeExplorer.cpp
${
volumeExplorer_ui
}
${
volumeExplorer_moc
}
)
QT4_WRAP_UI
(
volumeExplorer_ui volumeExplorer.ui
)
QT4_WRAP_CPP
(
volumeExplorer_moc volumeExplorer.h
)
add_executable
(
volumeExplorer volumeExplorer.cpp
${
volumeExplorer_ui
}
${
volumeExplorer_moc
}
)
target_link_libraries
(
volumeExplorer
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
mcmesh_ui
../
mcmesh.ui
)
QT4_WRAP_CPP
(
mcmesh_moc
../
mcmesh.h
)
add_executable
(
mcmesh
../
mcmesh.cpp
${
mcmesh_moc
}
${
mcmesh_ui
}
)
QT4_WRAP_UI
(
mcmesh_ui mcmesh.ui
)
QT4_WRAP_CPP
(
mcmesh_moc mcmesh.h
)
add_executable
(
mcmesh mcmesh.cpp
${
mcmesh_moc
}
${
mcmesh_ui
}
)
target_link_libraries
(
mcmesh
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
concave_rendering_moc
../
concave_rendering.h
)
add_executable
(
concave_rendering
../
concave_rendering.cpp
${
concave_rendering_moc
}
${
concave_rendering_ui
}
)
QT4_WRAP_CPP
(
concave_rendering_moc concave_rendering.h
)
add_executable
(
concave_rendering concave_rendering.cpp
${
concave_rendering_moc
}
${
concave_rendering_ui
}
)
target_link_libraries
(
concave_rendering
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
viewerOBJ_moc
../
viewerOBJ.h
)
add_executable
(
viewerOBJ
../
viewerOBJ.cpp
${
viewerOBJ_moc
}
)
QT4_WRAP_CPP
(
viewerOBJ_moc viewerOBJ.h
)
add_executable
(
viewerOBJ viewerOBJ.cpp
${
viewerOBJ_moc
}
)
target_link_libraries
(
viewerOBJ
${
CGoGN_LIBS
}
${
CGoGN_EXT_LIBS
}
)
Apps/Examples/Debug/CMakeLists.txt
deleted
100644 → 0
View file @
6fea2916
cmake_minimum_required
(
VERSION 2.8
)
project
(
examplesD
)
SET
(
CMAKE_BUILD_TYPE Debug
)
# define includes path
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
${
CGoGN_ROOT_DIR
}
/include
${
CGoGN_EXT_INCLUDES
}
)
# define libs path
link_directories
(
${
CGoGN_ROOT_DIR
}
/lib/Debug
${
CGoGN_ROOT_DIR
}
/lib/Release
${
Boost_LIBRARY_DIRS
}
)
IF
(
WIN32
)
link_directories
(
${
CGoGN_ROOT_DIR
}
/lib/$
(
ConfigurationName
)
${
Boost_LIBRARY_DIRS
}
)
ELSE
(
WIN32
)
link_directories
(
${
CGoGN_ROOT_DIR
}
/lib/Debug
${
CGoGN_ROOT_DIR
}
/lib/Release
)
ENDIF
(
WIN32
)
#define exec to compile
QT4_WRAP_CPP
(
frame_manip_moc ../frame_manip.h
)
add_executable
(
frame_manipD ../frame_manip.cpp
${
frame_manip_moc
}
)
target_link_libraries
(
frame_manipD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
texturesExample_moc ../texturesExample.h
)
add_executable
(
texturesExampleD ../texturesExample.cpp
${
texturesExample_moc
}
)
target_link_libraries
(
texturesExampleD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleMap3_moc ../simpleMap3.h
)
add_executable
(
simpleMap3D ../simpleMap3.cpp
${
simpleMap3_moc
}
)
target_link_libraries
(
simpleMap3D
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleGMap2_moc ../simpleGMap2.h
)
add_executable
(
simpleGMap2D ../simpleGMap2.cpp
${
simpleGMap2_moc
}
)
target_link_libraries
(
simpleGMap2D
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
simpleGMap3_moc ../simpleGMap3.h
)
add_executable
(
simpleGMap3D ../simpleGMap3.cpp
${
simpleGMap3_moc
}
)
target_link_libraries
(
simpleGMap3D
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
extrusionView_moc ../extrusionView.h
)
add_executable
(
extrusionViewD ../extrusionView.cpp
${
extrusionView_moc
}
)
target_link_libraries
(
extrusionViewD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
viewer_ui ../viewer.ui
)
QT4_WRAP_CPP
(
viewer_moc ../viewer.h
)
add_executable
(
viewerD ../viewer.cpp
${
viewer_moc
}
${
viewer_ui
}
)
target_link_libraries
(
viewerD
${
CGoGN_LIBS_D
}
${
NUMERICAL_LIBS
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
clipping_ui ../clipping.ui
)
QT4_WRAP_CPP
(
clipping_moc ../clipping.h
)
add_executable
(
clippingD ../clipping.cpp
${
clipping_ui
}
${
clipping_moc
}
)
target_link_libraries
(
clippingD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
volumeExplorer_ui ../volumeExplorer.ui
)
QT4_WRAP_CPP
(
volumeExplorer_moc ../volumeExplorer.h
)
add_executable
(
volumeExplorerD ../volumeExplorer.cpp
${
volumeExplorer_ui
}
${
volumeExplorer_moc
}
)
target_link_libraries
(
volumeExplorerD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_UI
(
mcmesh_ui ../mcmesh.ui
)
QT4_WRAP_CPP
(
mcmesh_moc ../mcmesh.h
)
add_executable
(
mcmeshD ../mcmesh.cpp
${
mcmesh_moc
}
${
mcmesh_ui
}
)
target_link_libraries
(
mcmeshD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
concave_rendering_moc ../concave_rendering.h
)
add_executable
(
concave_renderingD ../concave_rendering.cpp
${
concave_rendering_moc
}
${
concave_rendering_ui
}
)
target_link_libraries
(
concave_renderingD
${
CGoGN_LIBS_D
}
${
CGoGN_EXT_LIBS
}
)
QT4_WRAP_CPP
(
viewerOBJ_moc ../viewerOBJ.h
)
add_executable
(
viewerOBJD ../viewerOBJ.cpp
${
viewerOBJ_moc
}
)
target_link_libraries
(
viewerOBJD
${
CGoGN_LIBS_R
}
${
CGoGN_EXT_LIBS
}
)
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