2021-06-10 22:15:39 +12:00
|
|
|
# Copyright (C) 2008 by BogDan Vatra < bogdan@licentia.eu >
|
2022-07-04 10:54:42 +12:00
|
|
|
# Copyright (C) 2009-2022 Robin Stuart <rstuart114@gmail.com>
|
2020-12-01 04:51:14 +13:00
|
|
|
# vim: set ts=4 sw=4 et :
|
2008-09-19 02:44:52 +12:00
|
|
|
|
|
|
|
project(zint)
|
|
|
|
|
2021-07-13 03:57:32 +12:00
|
|
|
configure_file(zintconfig.h.in ${CMAKE_CURRENT_SOURCE_DIR}/zintconfig.h)
|
2020-11-23 00:29:45 +13:00
|
|
|
|
2022-06-03 07:32:25 +12:00
|
|
|
set(zint_COMMON_SRCS common.c library.c large.c reedsol.c gs1.c eci.c general_field.c)
|
2022-07-04 02:47:56 +12:00
|
|
|
set(zint_ONEDIM_SRCS bc412.c code.c code128.c 2of5.c upcean.c telepen.c medical.c plessey.c rss.c)
|
2018-02-07 09:57:01 +13:00
|
|
|
set(zint_POSTAL_SRCS postal.c auspost.c imail.c mailmark.c)
|
2019-03-21 22:14:24 +13:00
|
|
|
set(zint_TWODIM_SRCS code16k.c codablock.c dmatrix.c pdf417.c qr.c maxicode.c composite.c aztec.c code49.c code1.c gridmtx.c hanxin.c dotcode.c ultra.c)
|
2020-05-22 05:22:28 +12:00
|
|
|
set(zint_OUTPUT_SRCS vector.c ps.c svg.c emf.c bmp.c pcx.c gif.c png.c tif.c raster.c output.c)
|
2016-07-20 10:02:39 +12:00
|
|
|
set(zint_SRCS ${zint_OUTPUT_SRCS} ${zint_COMMON_SRCS} ${zint_ONEDIM_SRCS} ${zint_POSTAL_SRCS} ${zint_TWODIM_SRCS})
|
2008-09-19 02:44:52 +12:00
|
|
|
|
|
|
|
add_library(zint SHARED ${zint_SRCS})
|
2020-12-01 04:51:14 +13:00
|
|
|
|
2021-10-22 03:53:22 +13:00
|
|
|
if(WIN32)
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE libzint.rc)
|
|
|
|
endif()
|
|
|
|
|
2020-03-30 22:54:21 +13:00
|
|
|
if(ZINT_STATIC)
|
2020-12-01 04:51:14 +13:00
|
|
|
add_library(zint-static STATIC ${zint_SRCS})
|
|
|
|
endif()
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-03-23 00:20:44 +13:00
|
|
|
function(zint_target_link_libraries library)
|
|
|
|
target_link_libraries(zint ${library})
|
|
|
|
if(ZINT_STATIC)
|
|
|
|
target_link_libraries(zint-static ${library})
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(zint_target_compile_definitions scope definition)
|
|
|
|
target_compile_definitions(zint ${scope} ${definition})
|
|
|
|
if(ZINT_STATIC)
|
|
|
|
target_compile_definitions(zint-static ${scope} ${definition})
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2020-12-01 04:51:14 +13:00
|
|
|
set_target_properties(zint PROPERTIES SOVERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}"
|
|
|
|
VERSION ${ZINT_VERSION})
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-03-30 03:35:57 +13:00
|
|
|
if(ZINT_USE_PNG)
|
|
|
|
find_package(PNG)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ZINT_USE_PNG AND PNG_FOUND)
|
2021-03-23 00:20:44 +13:00
|
|
|
zint_target_link_libraries(PNG::PNG)
|
2021-03-22 23:33:05 +13:00
|
|
|
else()
|
2021-03-23 00:20:44 +13:00
|
|
|
zint_target_compile_definitions(PUBLIC NO_PNG)
|
2021-03-22 23:33:05 +13:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ZINT_TEST)
|
2021-03-23 00:20:44 +13:00
|
|
|
zint_target_compile_definitions(PUBLIC ZINT_TEST)
|
2020-12-01 04:51:14 +13:00
|
|
|
endif()
|
|
|
|
|
2018-12-12 21:37:56 +13:00
|
|
|
if(NOT MSVC)
|
2020-12-01 04:51:14 +13:00
|
|
|
# Link with standard C math library.
|
2021-03-23 00:20:44 +13:00
|
|
|
zint_target_link_libraries(m)
|
2020-12-01 04:51:14 +13:00
|
|
|
endif()
|
2018-12-12 21:37:56 +13:00
|
|
|
|
|
|
|
if(MSVC)
|
2021-04-27 01:47:53 +12:00
|
|
|
target_compile_definitions(zint PRIVATE DLL_EXPORT)
|
2020-12-01 04:51:14 +13:00
|
|
|
endif()
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-07-07 06:53:31 +12:00
|
|
|
install(TARGETS zint ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
if(ZINT_STATIC)
|
|
|
|
install(TARGETS zint-static ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
endif()
|
2008-09-24 21:00:44 +12:00
|
|
|
install(FILES zint.h DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel)
|
2021-03-22 23:44:05 +13:00
|
|
|
|
|
|
|
if(ZINT_TEST)
|
|
|
|
add_subdirectory(tests)
|
2021-06-10 22:15:39 +12:00
|
|
|
endif()
|