mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 15:21:12 -04:00
bf83f2442d
- Rough start of the SQLite integration to facilitate the SQL queries - Cleanup and disable a little bit of code so the game no longer crashes when entering the editor - Implement some of the mouse data stuff  https://user-images.githubusercontent.com/13153231/202881484-399747e7-dcdb-4e09-93e9-b561a45c8a18.mp4 This is a very old branch so best to get it merged now that it's at a decent point so it can be iterated on.
22 lines
501 B
Batchfile
Vendored
Generated
22 lines
501 B
Batchfile
Vendored
Generated
@REM Copyright (c) 2012-2020 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
|
@REM
|
|
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
|
@REM or copy at http://opensource.org/licenses/MIT)
|
|
mkdir build
|
|
cd build
|
|
|
|
@REM Generate a Visual Studio solution for latest version found
|
|
cmake ..
|
|
@if ERRORLEVEL 1 goto onError
|
|
|
|
@REM Build default configuration (ie 'Debug')
|
|
cmake --build .
|
|
@if ERRORLEVEL 1 goto onError
|
|
|
|
goto onSuccess
|
|
|
|
:onError
|
|
@echo An error occured!
|
|
:onSuccess
|
|
cd ..
|