1
0

feat: change project layout for new added project

This commit is contained in:
2026-01-30 15:23:01 +08:00
parent 2b9c0296d1
commit 2f59e16590
28 changed files with 161 additions and 36 deletions

0
.github/scripts/linux.sh vendored Normal file
View File

0
.github/scripts/macos.sh vendored Normal file
View File

18
.github/scripts/windows.bat vendored Normal file
View File

@@ -0,0 +1,18 @@
@ECHO OFF
:: Create build directory and enter it
MKDIR bin
CD bin
:: Create internal build and install directory, then enter it
MKDIR build
MKDIR install
CD build
:: Build with x64 architecture in Release mode
cmake -A x64 -DYYCC_BUILD_TEST=ON -DGTest_ROOT=%GTest_ROOT% -DYYCC_BUILD_BENCHMARK=ON -Dbenchmark_ROOT=%benchmark_ROOT% ../..
cmake --build . --config Release
cmake --install . --prefix=../install --config Release
:: Back to root directory
CD ..
CD ..

0
.github/scripts/yycc-linux.sh vendored Normal file
View File

0
.github/scripts/yycc-macos.sh vendored Normal file
View File

0
.github/scripts/yycc-windows.bat vendored Normal file
View File

0
.github/scripts/zlib-linux.sh vendored Normal file
View File

0
.github/scripts/zlib-macos.sh vendored Normal file
View File

0
.github/scripts/zlib-windows.bat vendored Normal file
View File