mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 00:39:00 +08:00
60 lines
979 B
CMake
60 lines
979 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(lcms)
|
|
|
|
set(SRCS
|
|
"src/cmstypes.c"
|
|
"src/cmsvirt.c"
|
|
"src/cmswtpnt.c"
|
|
"src/cmsxform.c"
|
|
"src/lcms2.def"
|
|
"src/lcms2_internal.h"
|
|
"src/cmsalpha.c"
|
|
"src/cmscam02.c"
|
|
"src/cmscgats.c"
|
|
"src/cmscnvrt.c"
|
|
"src/cmserr.c"
|
|
"src/cmsgamma.c"
|
|
"src/cmsgmt.c"
|
|
"src/cmshalf.c"
|
|
"src/cmsintrp.c"
|
|
"src/cmsio0.c"
|
|
"src/cmsio1.c"
|
|
"src/cmslut.c"
|
|
"src/cmsmd5.c"
|
|
"src/cmsmtrx.c"
|
|
"src/cmsnamed.c"
|
|
"src/cmsopt.c"
|
|
"src/cmspack.c"
|
|
"src/cmspcs.c"
|
|
"src/cmsplugin.c"
|
|
"src/cmsps2.c"
|
|
"src/cmssamp.c"
|
|
"src/cmssm.c"
|
|
)
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
|
string(REPLACE "/utf-8" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
|
|
|
include_directories(
|
|
"./include"
|
|
)
|
|
|
|
add_library(lcms ${SRCS})
|
|
|
|
if(NOT SKIP_INSTALL_HEADERS )
|
|
|
|
install(FILES
|
|
"./include/lcms2.h"
|
|
"./include/lcms2_plugin.h"
|
|
DESTINATION include
|
|
)
|
|
|
|
endif(NOT SKIP_INSTALL_HEADERS )
|
|
|
|
install(TARGETS lcms EXPORT lcms_EXPORT
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|