libragephoto: C++ headers have now .hpp extension

RagePhoto.h -> RagePhoto.hpp
RagePhotoA.h -> RagePhotoA.hpp
RagePhotoC.h -> RagePhoto.h

unicode.cmake: exclude codecvt for C builds
GitHub Actions: separate C and CXX builds
This commit is contained in:
Syping 2023-06-07 06:57:23 +02:00
parent 6acf7b7338
commit b838c505a4
21 changed files with 601 additions and 510 deletions

View file

@ -60,7 +60,7 @@ else()
"UNICODE_WINCVT"
)
message("-- UnicodeCvt - wincvt")
elseif (CODECVT_COMPAT)
elseif (CODECVT_COMPAT AND NOT RAGEPHOTO_C_LIBRARY)
list(APPEND LIBRAGEPHOTO_DEFINES
"UNICODE_CODECVT"
)
@ -70,5 +70,7 @@ else()
"UNICODE_ICONV"
)
message("-- UnicodeCvt - iconv")
else()
message("-- UnicodeCvt - none")
endif()
endif()