mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
631 B
44 lines
631 B
@echo off |
|
goto menu |
|
|
|
:menu |
|
echo Build Project Generator: |
|
echo. |
|
echo [0] Clean |
|
echo [1] Visual C++ 2010 |
|
echo [2] Visual C++ 2008 |
|
echo [3] CodeLite |
|
echo [4] GNU Make |
|
echo. |
|
|
|
:choice |
|
set /P C="Choice: " |
|
if "%C%"=="4" goto gmake |
|
if "%C%"=="3" goto codelite |
|
if "%C%"=="2" goto vs2008 |
|
if "%C%"=="1" goto vs2010 |
|
if "%C%"=="0" goto clean |
|
|
|
:clean |
|
"premake4" --file=premake4.lua clean |
|
goto quit |
|
|
|
:vs2010 |
|
"premake4" --file=premake4.lua vs2010 |
|
goto quit |
|
|
|
:vs2008 |
|
"premake4" --file=premake4.lua vs2008 |
|
goto quit |
|
|
|
:codelite |
|
"premake4" --file=premake4.lua codelite |
|
goto quit |
|
|
|
:gmake |
|
"premake4" --file=premake4.lua gmake |
|
goto quit |
|
|
|
:quit |
|
pause |
|
:end |