1
0
Fork 0
forked from fun/fun

Added AES256 support... (0.38.7)

This commit is contained in:
Johannes Findeisen 2026-02-08 23:56:21 +01:00
commit e017466cc7
3 changed files with 373 additions and 6 deletions

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(fun VERSION 0.38.6 LANGUAGES C)
project(fun VERSION 0.38.7 LANGUAGES C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)
@ -229,15 +229,10 @@ endif()
# Common locations (out-of-source and legacy in-source builds)
list(APPEND _candidates
\"\${CMAKE_BINARY_DIR}/install_manifest.txt\"
\"\${CMAKE_SOURCE_DIR}/install_manifest.txt\"
\"\${CMAKE_BINARY_DIR}/install_manifest_Debug.txt\"
\"\${CMAKE_BINARY_DIR}/install_manifest_Release.txt\"
\"\${CMAKE_BINARY_DIR}/install_manifest_RelWithDebInfo.txt\"
\"\${CMAKE_BINARY_DIR}/install_manifest_MinSizeRel.txt\"
\"\${CMAKE_SOURCE_DIR}/install_manifest_Debug.txt\"
\"\${CMAKE_SOURCE_DIR}/install_manifest_Release.txt\"
\"\${CMAKE_SOURCE_DIR}/install_manifest_RelWithDebInfo.txt\"
\"\${CMAKE_SOURCE_DIR}/install_manifest_MinSizeRel.txt\"
)
set(_manifest_file \"\")