diff --git a/CMakeLists.txt b/CMakeLists.txt index f894155..3886886 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.23) project(YYCC - VERSION 1.0.0 + VERSION 1.1.0 LANGUAGES CXX ) diff --git a/script/build.bat b/script/build.bat index ef249a4..e7b1545 100644 --- a/script/build.bat +++ b/script/build.bat @@ -12,6 +12,7 @@ MKDIR bin CD bin MKDIR Win32 MKDIR x64 +MKDIR documentation MKDIR install :: Build for Win32 @@ -32,4 +33,11 @@ cmake --build . --config Release cmake --install . --prefix=../install --config Release CD .. +:: Build for documentation +CD documentation +cmake -DYYCC_BUILD_DOC=ON ../.. +cmake --build . --config Release +:: cmake --install . --prefix=../install --config Release +CD .. + ECHO DONE