diff --git a/CMakeLists.txt b/CMakeLists.txt index 22e9d51..261a01f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,27 +1,29 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) -project(UGM VERSION 0.5.5) +project(UGM VERSION 0.5.6) message(STATUS "[Project] ${PROJECT_NAME}") include(FetchContent) -message(STATUS "find package: UCMake 0.5.0") -find_package(UCMake 0.5.0 QUIET) +message(STATUS "find package: UCMake 0.5.1") +find_package(UCMake 0.5.1 QUIET) if(NOT UCMake_FOUND) - message(STATUS "UCMake 0.5.0 not found") + message(STATUS "UCMake 0.5.1 not found") set(_address "https://github.com/Ubpa/UCMake") - message(STATUS "fetch: ${_address} with tag 0.5.0") + message(STATUS "fetch: ${_address} with tag 0.5.1") FetchContent_Declare( UCMake GIT_REPOSITORY ${_address} - GIT_TAG "0.5.0" + GIT_TAG "0.5.1" ) FetchContent_MakeAvailable(UCMake) - message(STATUS "UCMake 0.5.0 build done") + message(STATUS "UCMake 0.5.1 build done") endif() +Ubpa_InitProject() + set(Ubpa_USE_XSIMD TRUE CACHE BOOL "use xsimd") -Ubpa_AddDep(UTemplate 0.4.0) +Ubpa_AddDep(UTemplate 0.4.1) Ubpa_AddSubDirsRec(include) Ubpa_AddSubDirsRec(src) diff --git a/README.md b/README.md index b648069..c5ce2c3 100644 --- a/README.md +++ b/README.md @@ -73,11 +73,11 @@ int main() { - [CMake-GUI](https://cmake.org/) 3.16.3 及以上 - 支持 SIMD 扩展指令集 SSE 4.1 -> 其他环境自行测试,如成功请告知 +> 其他环境自行测试 ### 3.2 步骤 -> 另外不熟悉 CMake 的用户可在 [release-v0.5.0](https://github.com/Ubpa/UGM/releases/tag/v0.5.0) 直接下载 CMake install 版本和纯头文件库 +> 另外不熟悉 CMake 的用户可在 [release-v0.5.6](https://github.com/Ubpa/UGM/releases/tag/v0.5.6) 直接下载 CMake install 版本和纯头文件库 > > 任何配置、使用等问题欢迎提 issues