mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-05 18:45:30 +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
|
debug: clean-debug
|
||||||
mkdir -p bin/Debug
|
mkdir -p bin/Debug
|
||||||
cp SDL2-CS.dll.config 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:
|
clean-debug:
|
||||||
rm -rf bin/Debug
|
rm -rf bin/Debug
|
||||||
|
@ -21,7 +21,7 @@ clean-debug:
|
||||||
release: clean-release
|
release: clean-release
|
||||||
mkdir -p bin/Release
|
mkdir -p bin/Release
|
||||||
cp SDL2-CS.dll.config 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:
|
clean-release:
|
||||||
rm -rf bin/Release
|
rm -rf bin/Release
|
||||||
|
|
Loading…
Reference in a new issue