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
Antoine Belvire
otb
Commits
b9050221
"README.md" did not exist on "2b1b06452664ff75fd2448a3ae40fcb3c0038d39"
Commit
b9050221
authored
10 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
CMakeLists.txt based on makefile.vc
parent
b0e31cd3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
patches/JPEG/CMakeLists.txt
+14
-24
14 additions, 24 deletions
patches/JPEG/CMakeLists.txt
with
14 additions
and
24 deletions
patches/JPEG/CMakeLists.txt
+
14
−
24
View file @
b9050221
cmake_minimum_required
(
VERSION 2.8.3
)
project
(
jpeg
_install
)
project
(
lib
jpeg
)
#jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h jversion.h jmemsys.h
set
(
LIBJPEG_SRCS jcapimin.c jcapistd.c jcarith.c jctrans.c jcparam.c jcinit.c jcmainct.c jcmarker.c jcmaster.c jdatadst.c jccoefct.c jccolor.c jcprepct.c jcsample.c jcdctmgr.c jchuff.c jfdctflt.c jfdctfst.c jfdctint.c jdapimin.c jdapistd.c jdarith.c jdtrans.c jdatasrc.c jdmaster.c jdinput.c jdmarker.c jdhuff.c jdmainct.c jdcoefct.c jdpostct.c jddctmgr.c jidctfst.c jidctflt.c jidctint.c jdsample.c jdcolor.c jquant1.c jquant2.c jdmerge.c jaricom.c jcomapi.c jerror.c jutils.c jmemnobs.c jmemmgr.c
)
file
(
GLOB
${
PROJECT_NAME
}
_HEADERS
"
${
JPEG_BUILD_DIR
}
/jconfig.h"
"
${
JPEG_BUILD_DIR
}
/jerror.h"
"
${
JPEG_BUILD_DIR
}
/jmorecfg.h"
"
${
JPEG_BUILD_DIR
}
/jpegint.h"
"
${
JPEG_BUILD_DIR
}
/jpeglib.h"
)
set
(
LIBJPEG_INCLUDES jdct.h jconfig.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h jpeglib.h jversion.h
)
#libjpeg is static
file
(
GLOB
${
PROJECT_NAME
}
_LIBS
"
${
JPEG_BUILD_DIR
}
/*.lib"
)
#file(GLOB ${PROJECT_NAME}_DLLS "${JPEG_INCLUDE_DIR}/jpeg*.dll" )
include_directories
(
"
${
CMAKE_SOURCE_DIR
}
"
)
add_library
(
libjpeg
${
LIBJPEG_SRCS
}
)
install
(
TARGETS libjpeg
RUNTIME DESTINATION bin COMPONENT RuntimeLibraries
LIBRARY DESTINATION lib COMPONENT RuntimeLibraries
ARCHIVE DESTINATION lib COMPONENT Development
)
foreach
(
${
PROJECT_NAME
}
_HEADER
${${
PROJECT_NAME
}
_HEADERS
}
)
install
(
FILES
${${
PROJECT_NAME
}
_HEADER
}
DESTINATION include
COMPONENT Development
)
endforeach
()
foreach
(
${
PROJECT_NAME
}
_LIB
${${
PROJECT_NAME
}
_LIBS
}
)
install
(
FILES
${${
PROJECT_NAME
}
_LIB
}
DESTINATION lib
COMPONENT Development
)
foreach
(
LIBJPEG_INCLUDE
${
LIBJPEG_INCLUDES
}
)
install
(
FILES
${
LIBJPEG_INCLUDE
}
DESTINATION include COMPONENT Development
)
endforeach
()
# foreach(${PROJECT_NAME}_DLL ${${PROJECT_NAME}_DLLS})
# install(FILES ${${PROJECT_NAME}_DLL}
# DESTINATION bin
# COMPONENT Development)
# endforeach()
\ No newline at end of file
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