Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:AsPJT/PAX_SAPIENTICA into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
guinpen98 committed Jan 20, 2024
2 parents 16770fa + 1ed48ab commit 2561eb9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Projects/MapViewer/Windows/Config.tsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
key value
asset_file ../
11 changes: 11 additions & 0 deletions Scripts/DevelopmentBuild.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@echo off

cd /d "%~dp0\.."

SET BUILD_DIR_NAME=DevelopmentBuild

if exist "%BUILD_DIR_NAME%" rmdir /s /q "%BUILD_DIR_NAME%"
mkdir "%BUILD_DIR_NAME%"

cmake -S"Projects/MapViewer" -B"%BUILD_DIR_NAME%" -DCMAKE_BUILD_TYPE=Release -GNinja
cmake --build "%BUILD_DIR_NAME%"
11 changes: 11 additions & 0 deletions Scripts/ProductionBuild.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@echo off

cd /d "%~dp0\.."

SET BUILD_DIR_NAME=ProductionBuild

if exist "%BUILD_DIR_NAME%" rmdir /s /q "%BUILD_DIR_NAME%"
mkdir "%BUILD_DIR_NAME%"

cmake -S"Projects/MapViewer" -B"%BUILD_DIR_NAME%" -DCMAKE_BUILD_TYPE=Release -DPAXS_BUILD_TYPE=Production -GNinja
cmake --build "%BUILD_DIR_NAME%"
4 changes: 2 additions & 2 deletions Scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
- コード行数をカウントするためのスクリプトです
- CTest.*
- CTestを実行するためのスクリプトです
- DevelopmentBuild.sh
- DevelopmentBuild.*
- MapViewerの開発ビルドを行うためのスクリプトです
- ProductionBuild.sh
- ProductionBuild.*
- MapViewerの本番ビルドを行うためのスクリプトです
- SyncSubmodule.*
- submoduleを同期するためのスクリプトです
Expand Down

0 comments on commit 2561eb9

Please sign in to comment.