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
5df32072
Commit
5df32072
authored
Dec 17, 2009
by
Emmanuel Christophe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMP: library mess...
parent
ab8ac21e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
Code/Common/CMakeLists.txt
Code/Common/CMakeLists.txt
+1
-1
Code/IO/CMakeLists.txt
Code/IO/CMakeLists.txt
+3
-1
Code/Radiometry/CMakeLists.txt
Code/Radiometry/CMakeLists.txt
+3
-1
No files found.
Code/Common/CMakeLists.txt
View file @
5df32072
...
...
@@ -19,7 +19,7 @@ ENDIF(OTB_USE_MAPNIK)
IF
(
OTB_USE_PQXX
)
#TODO this line should be refined when we will like to have this capability with windows
TARGET_LINK_LIBRARIES
(
OTBCommon
pq pqxx
)
TARGET_LINK_LIBRARIES
(
OTBCommon
${
PQ_LIBRARY
}
${
PQXX_LIBRARY
}
)
ENDIF
(
OTB_USE_PQXX
)
IF
(
OTB_I18N
)
...
...
Code/IO/CMakeLists.txt
View file @
5df32072
...
...
@@ -30,7 +30,9 @@ ENDIF(OTB_COMPILE_JPEG2000)
ADD_LIBRARY
(
OTBIO
${
OTBIO_SRCS
}
)
TARGET_LINK_LIBRARIES
(
OTBIO OTBCommon
${
GDAL_LIBRARY
}
${
OGR_LIBRARY
}
otbossim otbossimplugins ITKIO ITKCommon dxf otbkml
)
TARGET_LINK_LIBRARIES
(
OTBIO
${
GDAL_LIBRARY
}
${
OGR_LIBRARY
}
OTBCommon
)
TARGET_LINK_LIBRARIES
(
OTBIO otbossim otbossimplugins ITKIO ITKCommon dxf otbkml
)
IF
(
OTB_USE_LIBLAS
)
TARGET_LINK_LIBRARIES
(
OTBIO otbliblas
)
ENDIF
(
OTB_USE_LIBLAS
)
...
...
Code/Radiometry/CMakeLists.txt
View file @
5df32072
...
...
@@ -3,7 +3,9 @@
FILE
(
GLOB OTBRadiometry_SRCS
"*.cxx"
)
ADD_LIBRARY
(
OTBRadiometry
${
OTBRadiometry_SRCS
}
)
TARGET_LINK_LIBRARIES
(
OTBRadiometry OTBCommon otb6S otbossim
)
#Note: depend on OTBIO instead of otbossim to keep the correct order between gdal and ossim
TARGET_LINK_LIBRARIES
(
OTBRadiometry OTBCommon otb6S OTBIO
)
IF
(
OTB_LIBRARY_PROPERTIES
)
SET_TARGET_PROPERTIES
(
OTBRadiometry 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