2021-11-09 03:25:27 +01:00
|
|
|
#[[**************************************************************************
|
|
|
|
* libragephoto RAGE Photo Parser
|
2023-03-03 03:26:59 +01:00
|
|
|
* Copyright (C) 2021-2023 Syping
|
2021-11-09 03:25:27 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* This software is provided as-is, no warranties are given to you, we are not
|
|
|
|
* responsible for anything with use of the software, you are self responsible.
|
|
|
|
****************************************************************************]]
|
|
|
|
|
2021-12-02 05:55:50 +01:00
|
|
|
set(RAGEPHOTO_UNICODE "" CACHE STRING "libragephoto Unicode implementation")
|
|
|
|
if (RAGEPHOTO_UNICODE)
|
|
|
|
string(TOUPPER "UNICODE_${RAGEPHOTO_UNICODE}" UNICODE_DEF)
|
|
|
|
list(APPEND LIBRAGEPHOTO_DEFINES
|
|
|
|
"${UNICODE_DEF}"
|
|
|
|
)
|
|
|
|
message("-- UnicodeCvt - ${RAGEPHOTO_UNICODE}")
|
2021-11-09 03:25:27 +01:00
|
|
|
else()
|
2021-12-02 05:55:50 +01:00
|
|
|
# RagePhoto Unicode functionality tests
|
|
|
|
message("-- Testing codecvt")
|
2022-12-28 05:56:01 +01:00
|
|
|
try_run(CODECVT_RUN CODECVT_COMPILE "${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}/tests/CodecvtTest.cpp")
|
2021-12-02 05:55:50 +01:00
|
|
|
if (CODECVT_COMPILE AND CODECVT_RUN EQUAL 0)
|
|
|
|
set(CODECVT_COMPAT TRUE)
|
|
|
|
message("-- Testing codecvt - yes")
|
2021-11-09 03:25:27 +01:00
|
|
|
else()
|
2021-12-02 05:55:50 +01:00
|
|
|
message("-- Testing codecvt - no")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message("-- Testing iconv")
|
2022-12-28 05:56:01 +01:00
|
|
|
try_run(ICONV_RUN ICONV_COMPILE "${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}/tests/IconvTest.cpp")
|
2021-12-02 05:55:50 +01:00
|
|
|
if (ICONV_COMPILE AND ICONV_RUN EQUAL 0)
|
|
|
|
set(ICONV_COMPAT TRUE)
|
|
|
|
message("-- Testing iconv - yes")
|
|
|
|
else()
|
|
|
|
message("-- Testing iconv - no")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
message("-- Testing wincvt")
|
2022-12-28 05:56:01 +01:00
|
|
|
try_run(WINCVT_RUN WINCVT_COMPILE "${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}/tests/WincvtTest.cpp")
|
2021-12-02 05:55:50 +01:00
|
|
|
if (WINCVT_COMPILE AND WINCVT_RUN EQUAL 0)
|
|
|
|
set(WINCVT_COMPAT TRUE)
|
|
|
|
message("-- Testing wincvt - yes")
|
|
|
|
else()
|
|
|
|
message("-- Testing wincvt - no")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Unicode implementation for RagePhoto
|
|
|
|
if (WINCVT_COMPAT)
|
|
|
|
list(APPEND LIBRAGEPHOTO_DEFINES
|
|
|
|
"UNICODE_WINCVT"
|
|
|
|
)
|
|
|
|
message("-- UnicodeCvt - wincvt")
|
2023-06-07 06:57:23 +02:00
|
|
|
elseif (CODECVT_COMPAT AND NOT RAGEPHOTO_C_LIBRARY)
|
2021-12-02 05:55:50 +01:00
|
|
|
list(APPEND LIBRAGEPHOTO_DEFINES
|
|
|
|
"UNICODE_CODECVT"
|
|
|
|
)
|
|
|
|
message("-- UnicodeCvt - codecvt")
|
|
|
|
elseif (ICONV_COMPAT)
|
|
|
|
list(APPEND LIBRAGEPHOTO_DEFINES
|
|
|
|
"UNICODE_ICONV"
|
|
|
|
)
|
|
|
|
message("-- UnicodeCvt - iconv")
|
2023-06-07 06:57:23 +02:00
|
|
|
else()
|
|
|
|
message("-- UnicodeCvt - none")
|
2021-11-09 03:25:27 +01:00
|
|
|
endif()
|
|
|
|
endif()
|