mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-03 19:55:35 +00:00
dmcs->mcs
This commit is contained in:
parent
9743aaef11
commit
292c0084a1
4
Makefile
4
Makefile
|
@ -13,7 +13,7 @@ SRC = \
|
|||
debug: clean-debug
|
||||
mkdir -p bin/Debug
|
||||
cp SDL2-CS.dll.config bin/Debug
|
||||
dmcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC)
|
||||
mcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC)
|
||||
|
||||
clean-debug:
|
||||
rm -rf bin/Debug
|
||||
|
@ -21,7 +21,7 @@ clean-debug:
|
|||
release: clean-release
|
||||
mkdir -p bin/Release
|
||||
cp SDL2-CS.dll.config bin/Release
|
||||
dmcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC)
|
||||
mcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC)
|
||||
|
||||
clean-release:
|
||||
rm -rf bin/Release
|
||||
|
|
Loading…
Reference in a new issue