https://github.com/sthairno/siv3dtemplate
https://github.com/sthairno/siv3dtemplate
linux siv3d template
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sthairno/siv3dtemplate
- Owner: sthairno
- Created: 2022-08-11T15:30:06.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-12T02:33:12.000Z (almost 3 years ago)
- Last Synced: 2025-02-03T18:16:57.498Z (4 months ago)
- Topics: linux, siv3d, template
- Language: GLSL
- Homepage:
- Size: 59 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Siv3DTemplate
Linux版OpenSiv3Dのプロジェクトテンプレート
## ファイル構造
```
Siv3DTemplate/
├── .idea: CLion設定
│ (参考: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems)
│ └── ...
├── .vscode: VSCodeの設定
│ └── extensions.json: 推奨する拡張機能の設定
├── App
│ ├── example: サンプルファイル (削除可能)
│ │ └── ...
│ ├── resources: リソースファイル
│ │ (参考: https://zenn.dev/reputeless/books/siv3d-documentation/viewer/tutorial-resource)
│ │ └── engine
│ │ └── ...
│ ├── Siv3DTemplate: 実行可能ファイル(Releaseビルド)
│ └── Siv3DTemplate_Debug: 実行可能ファイル(Debugビルド)
├── CMakeLists.txt: CMakeプロジェクト設定
├── Main.cpp: ソースファイル
└── README.md: このファイル
```## 必須環境
- **[OpenSiv3D](https://github.com/Siv3D/OpenSiv3D) v0.6.5** のCMakeパッケージのインストール
- CMake 3.12以上## 検証済み環境
- Visual Studio Code
- CLion## プロジェクト名の変更(推奨)
```bash
cd
NAME="<新しいプロジェクト名>"
rm -f App/Siv3DTemplate*
sed -i -e "s/Siv3DTemplate/${NAME}/g" .gitignore CMakeLists.txt
```