Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sébastien Peillet
otb
Commits
be4693ae
Commit
be4693ae
authored
8 years ago
by
Manuel Grizonnet
Browse files
Options
Downloads
Patches
Plain Diff
ENH: cmake_build_type is now transfered by cmake_cache_args
parent
d21e34b1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
SuperBuild/CMake/External_itk.cmake
+0
-1
0 additions, 1 deletion
SuperBuild/CMake/External_itk.cmake
SuperBuild/CMake/External_openjpeg.cmake
+1
-13
1 addition, 13 deletions
SuperBuild/CMake/External_openjpeg.cmake
SuperBuild/CMake/External_otb.cmake
+1
-1
1 addition, 1 deletion
SuperBuild/CMake/External_otb.cmake
with
2 additions
and
15 deletions
SuperBuild/CMake/External_itk.cmake
+
0
−
1
View file @
be4693ae
...
...
@@ -122,7 +122,6 @@ endif()
# forward compilation flags
set
(
ITK_SB_COMPILATION_FLAGS
-DCMAKE_BUILD_TYPE:STRING=
${
CMAKE_BUILD_TYPE
}
-DCMAKE_C_FLAGS:STRING=
${
CMAKE_C_FLAGS
}
-DCMAKE_CXX_FLAGS:STRING=
${
CMAKE_CXX_FLAGS
}
-DCMAKE_EXE_LINKER_FLAGS:STRING=
${
CMAKE_EXE_LINKER_FLAGS
}
...
...
This diff is collapsed.
Click to expand it.
SuperBuild/CMake/External_openjpeg.cmake
+
1
−
13
View file @
be4693ae
...
...
@@ -16,17 +16,6 @@ if(MSVC)
#TODO: add LCMS dependency
endif
()
# forward compilation flags
set
(
OPENJPEG_SB_COMPILATION_FLAGS
-DCMAKE_BUILD_TYPE:STRING=
${
CMAKE_BUILD_TYPE
}
-DCMAKE_C_FLAGS:STRING=
${
CMAKE_C_FLAGS
}
-DCMAKE_CXX_FLAGS:STRING=
${
CMAKE_CXX_FLAGS
}
-DCMAKE_EXE_LINKER_FLAGS:STRING=
${
CMAKE_EXE_LINKER_FLAGS
}
-DCMAKE_MODULE_LINKER_FLAGS:STRING=
${
CMAKE_MODULE_LINKER_FLAGS
}
-DCMAKE_SHARED_LINKER_FLAGS:STRING=
${
CMAKE_SHARED_LINKER_FLAGS
}
-DCMAKE_STATIC_LINKER_FLAGS:STRING=
${
CMAKE_STATIC_LINKER_FLAGS
}
)
ExternalProject_Add
(
OPENJPEG
PREFIX OPENJPEG
GIT_REPOSITORY
"https://github.com/uclouvain/openjpeg.git"
...
...
@@ -36,7 +25,6 @@ ExternalProject_Add(OPENJPEG
DOWNLOAD_DIR
${
DOWNLOAD_LOCATION
}
CMAKE_CACHE_ARGS
${
SB_CMAKE_CACHE_ARGS
}
${
OPENJPEG_SB_COMPILATION_FLAGS
}
-DBUILD_CODEC:BOOL=ON
-DBUILD_DOC:BOOL=OFF
-DBUILD_JPIP:BOOL=OFF
...
...
@@ -56,4 +44,4 @@ SUPERBUILD_UPDATE_CMAKE_VARIABLES(OPENJPEG FALSE)
#There is an issue with CLRF and patch from github
if
(
NOT MSVC
)
SUPERBUILD_PATCH_SOURCE
(
OPENJPEG
)
endif
()
\ No newline at end of file
endif
()
This diff is collapsed.
Click to expand it.
SuperBuild/CMake/External_otb.cmake
+
1
−
1
View file @
be4693ae
...
...
@@ -109,8 +109,8 @@ endif()
# forward compilation flags
set
(
OTB_SB_C_FLAGS
"
${
SB_PRIOR_INCLUDE_FLAGS
}
${
CMAKE_C_FLAGS
}
"
)
set
(
OTB_SB_CXX_FLAGS
"
${
SB_PRIOR_INCLUDE_FLAGS
}
${
CMAKE_CXX_FLAGS
}
"
)
set
(
OTB_SB_COMPILATION_FLAGS
-DCMAKE_BUILD_TYPE:STRING=
${
CMAKE_BUILD_TYPE
}
-DCMAKE_C_FLAGS:STRING=
${
OTB_SB_C_FLAGS
}
-DCMAKE_CXX_FLAGS:STRING=
${
OTB_SB_CXX_FLAGS
}
-DCMAKE_EXE_LINKER_FLAGS:STRING=
${
CMAKE_EXE_LINKER_FLAGS
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment