mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-16 17:11:28 +00:00
8 lines
264 B
Makefile
8 lines
264 B
Makefile
|
|
all: builder native
|
|
|
|
builder:
|
|
msbuild -p:Configuration=Debug BuilderMono.sln
|
|
|
|
native:
|
|
g++ -std=c++14 -O2 --shared -g3 -o Build/libBuilderNative.so -fPIC -I Source/Native Source/Native/*.cpp Source/Native/OpenGL/*.cpp Source/Native/OpenGL/gl_load/*.c -lX11 -ldl
|