-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_linux.sh
More file actions
22 lines (18 loc) · 883 Bytes
/
generate_linux.sh
File metadata and controls
22 lines (18 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Change TARGET to any of the following:
#
# vs2022 -- Generate Visual Studio 2022 project files
# vs2019 -- Generate Visual Studio 2019 project files
# vs2017 -- Generate Visual Studio 2017 project files
# vs2015 -- Generate Visual Studio 2015 project files
# vs2013 -- Generate Visual Studio 2013 project files
# vs2012 -- Generate Visual Studio 2012 project files
# vs2010 -- Generate Visual Studio 2010 project files
# vs2008 -- Generate Visual Studio 2008 project files
# vs2005 -- Generate Visual Studio 2005 project files
# gmake2 -- Generate GNU Makefiles (including Cygwin and MinGW)
# xcode4 -- XCode projects
# codelite -- CodeLite projects
TARGET=gmake2
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd $SCRIPT_DIR
./third_party/bin/premake/linux/premake5 $TARGET