Skip to content
Snippets Groups Projects
Commit b9050221 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

CMakeLists.txt based on makefile.vc

parent b0e31cd3
No related branches found
No related tags found
No related merge requests found
cmake_minimum_required(VERSION 2.8.3)
project(jpeg_install)
project(libjpeg)
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment