mirror of
https://github.com/fortressforever/fortressforever-2013.git
synced 2024-11-09 23:01:50 +00:00
Merge Valve change "Make create*projects scripts work independently of cwd" to our create projects scripts
Conflicts: mp/src/creategameprojects_ff.bat
This commit is contained in:
parent
c6383e0089
commit
646379db93
4 changed files with 11 additions and 2 deletions
|
@ -1,2 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
pushd `dirname $0`
|
||||
devtools/bin/vpc /ff +everything /mksln everything_ff
|
||||
popd
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
devtools\bin\vpc.exe /ff +everything /mksln everything_ff.sln
|
||||
pushd %~dp0
|
||||
devtools\bin\vpc.exe /ff +everything /mksln everything_ff.sln
|
||||
popd
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
pushd `dirname $0`
|
||||
devtools/bin/vpc /ff +game /mksln game_ff
|
||||
popd
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
devtools\bin\vpc.exe /ff +game /mksln game_ff.sln
|
||||
pushd %~dp0
|
||||
devtools\bin\vpc.exe /ff +game /mksln game_ff.sln
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue