Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
273
Issues
273
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
2d1cfbfb
Commit
2d1cfbfb
authored
Dec 18, 2009
by
Emmanuel Christophe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMP: mess in cmake
parent
0bd9d86c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
10 deletions
+8
-10
Code/IO/CMakeLists.txt
Code/IO/CMakeLists.txt
+3
-3
Testing/Code/BasicFilters/otbBasicFiltersTests1.cxx
Testing/Code/BasicFilters/otbBasicFiltersTests1.cxx
+0
-1
Utilities/dxflib/CMakeLists.txt
Utilities/dxflib/CMakeLists.txt
+1
-1
Utilities/otbconfigfile/CMakeLists.txt
Utilities/otbconfigfile/CMakeLists.txt
+0
-1
Utilities/otbossim/CMakeLists.txt
Utilities/otbossim/CMakeLists.txt
+3
-2
Utilities/otbossimplugins/CMakeLists.txt
Utilities/otbossimplugins/CMakeLists.txt
+1
-2
No files found.
Code/IO/CMakeLists.txt
View file @
2d1cfbfb
...
...
@@ -30,7 +30,7 @@ ENDIF(OTB_COMPILE_JPEG2000)
ADD_LIBRARY
(
OTBIO
${
OTBIO_SRCS
}
)
TARGET_LINK_LIBRARIES
(
OTBIO
${
GDAL_LIBRARY
}
${
OGR_LIBRARY
}
OTBCommon
)
TARGET_LINK_LIBRARIES
(
OTBIO
${
GDAL_LIBRARY
}
${
OGR_LIBRARY
}
${
TIFF_LIBRARY
}
${
GEOTIFF_LIBRARY
}
${
JPEG_LIBRARY
}
OTBCommon
)
TARGET_LINK_LIBRARIES
(
OTBIO otbossim otbossimplugins ITKIO ITKCommon dxf otbkml
)
IF
(
OTB_USE_LIBLAS
)
...
...
@@ -70,10 +70,10 @@ IF(NOT OTB_COMPILE_JPEG2000)
ENDIF
(
NOT OTB_COMPILE_JPEG2000
)
# Compile otbTestDriver
# Ne
d
ded in the OTB-Wrapping project.
# Ne
e
ded in the OTB-Wrapping project.
# Has to be compiled even if the BUILD_TEST are set to OFF
IF
(
CMAKE_COMPILER_IS_GNUCXX
)
SET_SOURCE_FILES_PROPERTIES
(
itk
TestDriver.cxx PROPERTIES COMPILE_FLAGS -w
)
SET_SOURCE_FILES_PROPERTIES
(
otb
TestDriver.cxx PROPERTIES COMPILE_FLAGS -w
)
ENDIF
(
CMAKE_COMPILER_IS_GNUCXX
)
ADD_EXECUTABLE
(
otbTestDriver otbTestDriver.cxx
)
...
...
Testing/Code/BasicFilters/otbBasicFiltersTests1.cxx
View file @
2d1cfbfb
...
...
@@ -29,7 +29,6 @@ void RegisterTests()
{
REGISTER_TEST
(
otbLeeFilter
);
REGISTER_TEST
(
otbFrostFilterNew
);
// REGISTER_TEST(otbFrostFilterTest);
REGISTER_TEST
(
otbFrostFilter
);
REGISTER_TEST
(
otbImageToPointSetFilterTest
);
REGISTER_TEST
(
otbOpeningClosingMorphologicalFilterNew
);
...
...
Utilities/dxflib/CMakeLists.txt
View file @
2d1cfbfb
...
...
@@ -2,7 +2,7 @@ PROJECT(dxflib)
FILE
(
GLOB dxflib_SRCS
"*.cpp"
)
ADD_LIBRARY
(
dxf
${
dxflib_SRCS
}
)
TARGET_LINK_LIBRARIES
(
dxf
)
IF
(
OTB_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
dxf PROPERTIES
${
OTB_LIBRARY_PROPERTIES
}
)
ENDIF
(
OTB_LIBRARY_PROPERTIES
)
...
...
Utilities/otbconfigfile/CMakeLists.txt
View file @
2d1cfbfb
...
...
@@ -5,7 +5,6 @@ FILE(GLOB otbconfigfilelib_HDRS "ConfigFile.h")
ADD_LIBRARY
(
otbconfigfile
${
otbconfigfilelib_SRCS
}
)
TARGET_LINK_LIBRARIES
(
otbconfigfile
)
IF
(
OTB_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
otbconfigfile PROPERTIES
${
OTB_LIBRARY_PROPERTIES
}
)
ENDIF
(
OTB_LIBRARY_PROPERTIES
)
...
...
Utilities/otbossim/CMakeLists.txt
View file @
2d1cfbfb
...
...
@@ -140,8 +140,9 @@ IF(NOT OTB_DISABLE_UTILITIES_COMPILATION)
${
ossim_imaging_SRCS
}
${
ossim_parallel_SRCS
}
${
ossim_elevation_SRCS
}
)
TARGET_LINK_LIBRARIES
(
otbossim
${
TIFF_LIBRARY
}
${
GEOTIFF_LIBRARY
}
${
JPEG_LIBRARY
}
${
OPENTHREADS_LIBRARY
}
)
# TARGET_LINK_LIBRARIES(otbossim ${GDAL_LIBRARY})#To make sure that gdal appear before geotiff
# TARGET_LINK_LIBRARIES(otbossim ${TIFF_LIBRARY} ${GEOTIFF_LIBRARY} ${JPEG_LIBRARY} ${OPENTHREADS_LIBRARY})
IF
(
NOT OTB_INSTALL_NO_LIBRARIES
)
INSTALL
(
TARGETS otbossim
...
...
Utilities/otbossimplugins/CMakeLists.txt
View file @
2d1cfbfb
...
...
@@ -23,9 +23,8 @@ SET(ossimplugins_SOURCES
${
ossimplugins_ossim_SRCS
}
)
ADD_LIBRARY
(
otbossimplugins
${
ossimplugins_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
otbossimplugins
${
GDAL_LIBRARY
}
otbossim
)
#
TARGET_LINK_LIBRARIES(otbossimplugins ${GDAL_LIBRARY} otbossim)
IF
(
OTB_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
otbossimplugins PROPERTIES
${
OTB_LIBRARY_PROPERTIES
}
)
ENDIF
(
OTB_LIBRARY_PROPERTIES
)
...
...
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