-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added something to use Qt Creator for code eiditing
and triggering of the build process without startin of Visual Studio Note: Edit build.bat to set right path to MSBuild if it fails with "unknown command" on "MSBuild". Better way is adding MSBuild's folder into path environment and remove full path to msbuild from build.bat
- Loading branch information
Showing
4 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
if "%1"=="" SET CONFIG=Release | ||
if NOT "%1"=="" SET CONFIG=%1 | ||
|
||
"C:\Program Files (x86)\MSBuild\12.0\Bin\MSBuild.exe" LunaDll.sln /nologo /p:Configuration="%CONFIG%" /p:Platfprm="Win32" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cmd /c "del /q /f /s Release Debug LunaLoader\Debug LunaLoader\Release LunaDLL\Debug LunaDLL\Release" |