mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-13 20:21:06 +00:00
WIP: port alien swarm and extend engine for asw
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
SQUIRREL= ..
|
||||
|
||||
OUT= ./minimalSqPlus
|
||||
INCDIRS= -I$(SQUIRREL)/include -I. -I$(SQUIRREL)/sqlibs -I$(SQUIRREL)/sqplus
|
||||
LIBDIR= -L$(SQUIRREL)/lib
|
||||
#LIBS= -lsquirrel -lsqstdlib -lsqplus
|
||||
LIBS= -lsqplus -lsquirrel -lsqstdlib
|
||||
|
||||
SRCS= minimalSqPlus.cpp
|
||||
|
||||
all: minimalSqPlus
|
||||
|
||||
FORCE: ;
|
||||
|
||||
minimalSqPlus: FORCE
|
||||
# g++ -fno-rtti -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
|
||||
g++ -O3 -Wall -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
|
||||
#g++ -O3 -fno-rtti -Os -o $(OUT) $(SRCS) $(INCDIRS) $(LIBDIR) $(LIBS)
|
||||
Reference in New Issue
Block a user