From 4a865cbbe5ef262f567f62c3ebbec959dd2f171c Mon Sep 17 00:00:00 2001 From: RobertBeckebans Date: Thu, 13 Feb 2014 13:50:31 +0100 Subject: [PATCH] Added .bat files for quick VS 2013 projects creation --- neo/cmake-vs2013-32bit-openal.bat | 6 ++++++ neo/cmake-vs2013-32bit.bat | 6 ++++++ neo/cmake-vs2013-64bit.bat | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 neo/cmake-vs2013-32bit-openal.bat create mode 100644 neo/cmake-vs2013-32bit.bat create mode 100644 neo/cmake-vs2013-64bit.bat diff --git a/neo/cmake-vs2013-32bit-openal.bat b/neo/cmake-vs2013-32bit-openal.bat new file mode 100644 index 00000000..a185f45a --- /dev/null +++ b/neo/cmake-vs2013-32bit-openal.bat @@ -0,0 +1,6 @@ +cd .. +del /s /q build +mkdir build +cd build +cmake -G "Visual Studio 12" -DCMAKE_INSTALL_PREFIX=../bin/win8-32 -DOPENAL=ON ../neo +pause \ No newline at end of file diff --git a/neo/cmake-vs2013-32bit.bat b/neo/cmake-vs2013-32bit.bat new file mode 100644 index 00000000..2f5fe1bb --- /dev/null +++ b/neo/cmake-vs2013-32bit.bat @@ -0,0 +1,6 @@ +cd .. +del /s /q build +mkdir build +cd build +cmake -G "Visual Studio 12" -DCMAKE_INSTALL_PREFIX=../bin/win8-32 ../neo +pause \ No newline at end of file diff --git a/neo/cmake-vs2013-64bit.bat b/neo/cmake-vs2013-64bit.bat new file mode 100644 index 00000000..e20a0421 --- /dev/null +++ b/neo/cmake-vs2013-64bit.bat @@ -0,0 +1,6 @@ +cd .. +del /s /q build +mkdir build +cd build +cmake -G "Visual Studio 12 Win64" -DCMAKE_INSTALL_PREFIX=../bin/win8-64 ../neo +pause \ No newline at end of file