mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
10 lines
340 B
Batchfile
10 lines
340 B
Batchfile
|
@echo off
|
||
|
mkdir build
|
||
|
cd build
|
||
|
|
||
|
rem set build_verbose="-D CMAKE_VERBOSE_MAKEFILE=ON"
|
||
|
set build_verbose=
|
||
|
cmake -G "MinGW Makefiles" %build_verbose% -D wxWidgets_ROOT_DIR="..\source\win32_deps\wxWidgets-2.8.10" -D wxWidgets_LIB_DIR="..\source\win32_deps\wxWidgets-2.8.10\lib" -D wxWidgets_CONFIGURATION="mswu" ..
|
||
|
|
||
|
mingw32-make
|
||
|
cd ..\
|