File tree 9 files changed +43
-27
lines changed
9 files changed +43
-27
lines changed Original file line number Diff line number Diff line change @@ -148,14 +148,14 @@ git clone https://github.com/Rezonality/mutils
148
148
cd mutils
149
149
prebuild.bat
150
150
config.bat
151
- build_all .bat
151
+ build .bat
152
152
153
153
# Zep
154
154
git clone https://github.com/Rezonality/zep
155
155
cd zep
156
156
set QT_INSTALL_LOCATION=C:\Qt\5.10.0\msvc2017_64 (for example - required for building QT)
157
- config_all .bat OR config .bat (for no Qt )
158
- build_all .bat
157
+ config .bat OR config_qt .bat or config_imgui.bat (for qt and imgui respectively )
158
+ build .bat
159
159
```
160
160
161
161
# Linux
@@ -166,9 +166,9 @@ cd mutils
166
166
chmod +x prebuild.bat
167
167
chmod +x m3rdparty/packages/install.sh
168
168
chmod +x config.sh
169
- chmod +x build_all .sh
169
+ chmod +x build .sh
170
170
./config.sh
171
- ./build_all .sh
171
+ ./build .sh
172
172
173
173
# Qt
174
174
sudo apt install qt-default (for Qt/Demo support)
@@ -177,8 +177,8 @@ set QT_INSTALL_LOCATION=C:\Qt\5.10.0\msvc2017_64 (example)
177
177
# Zep
178
178
git clone https://github.com/Rezonality/zep
179
179
cd zep
180
- ./config_all .sh OR ./config .sh (for no Qt )
181
- ./build_all .sh
180
+ ./config .sh OR ./config_qt .sh or ./config_imgui.sh (for qt and imgui respectively )
181
+ ./build .sh
182
182
```
183
183
184
184
# Mac
Original file line number Diff line number Diff line change
1
+ cd build
2
+ cmake --build . --config Debug
3
+ cmake --install . --config Debug --prefix ../../vcpkg/packages/zep_x64-windows-static-md
4
+
5
+ cmake --build . --config Release
6
+ cmake --install . --config Release --prefix ../../vcpkg/packages/zep_x64-windows-static-md
7
+
8
+ cmake --build . --config RelWithDebInfo
9
+ cmake --install . --config RelWithDebInfo --prefix ../../vcpkg/packages/zep_x64-windows-static-md
10
+ cd ..
Original file line number Diff line number Diff line change 1
1
set CURRENT_DIR = %CD%
2
2
mkdir build > nul
3
3
cd build
4
- cmake -G " Visual Studio 16 2019" -A x64 -DZEP_FEATURE_CPP_FILE_SYSTEM= 1 ..\
4
+ cmake -G " Visual Studio 16 2019" -A x64 ..\
5
5
cd " %CURRENT_DIR% "
6
6
Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/sh
2
2
3
- source config_all.sh
3
+ mkdir build
4
+ cd build
5
+ if [ " $1 " != " " ] ; then
6
+ cmake -G " Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=ON -DCMAKE_BUILD_TYPE=$1 ../
7
+ else
8
+ cmake -G " Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=ON -DCMAKE_BUILD_TYPE=Release ../
9
+ fi
10
+ cd ../
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ set CURRENT_DIR = %CD%
2
+ mkdir build > nul
3
+ cd build
4
+ cmake -G " Visual Studio 16 2019" -A x64 -DBUILD_QT=NO -DBUILD_IMGUI=YES ..\
5
+ cd " %CURRENT_DIR% "
6
+
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ set CURRENT_DIR=%CD%
2
2
mkdir build > nul
3
3
cd build
4
4
5
-
6
5
cmake -G " Visual Studio 15 2017 Win64" -DBUILD_QT=YES -DBUILD_IMGUI=NO ..\
7
6
cd " %CURRENT_DIR% "
8
7
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ mkdir build
4
+ cd build
5
+ if [ " $1 " != " " ] ; then
6
+ cmake -G " Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=OFF -DCMAKE_BUILD_TYPE=$1 ../
7
+ else
8
+ cmake -G " Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=OFF -DCMAKE_BUILD_TYPE=Release ../
9
+ fi
10
+ cd ../
You can’t perform that action at this time.
0 commit comments