Skip to content

Commit ee9b810

Browse files
committed
fix build script issue.
1 parent 09ae7ba commit ee9b810

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build_proj.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/sh
22

33
./tools/gyp/gyp --depth=./ picasso.gyp --generator-output=proj
4+
echo "\n"
5+
echo "Please change dir to \"proj\" and type \"make\" or \"make BUILDTYPE=Release\""

src/Makefile.gnu

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ FREETYPE_INC=-I/usr/include/freetype2
44
CXX=g++ -Wall -O3 -g -fno-rtti -fno-exceptions -msse2
55
#CXX=g++ -Wall -O3 -g -fprofile-arcs -ftest-coverage -fno-rtti -fno-exceptions
66
#CXX=g++ -Wall -O3 -g -pg -fno-rtti -fno-exceptions
7-
INC=-I. -I./gfx -I./gles2 -I./include -I./simd -I./../ -I./../include -I./../build ${FREETYPE_INC}
7+
INC=-I. -I./gfx -I./include -I./simd -I./../ -I./../include -I./../build ${FREETYPE_INC}
88
CXXFLAGS=-DEXPORT ${DLL}
99

10-
VPATH=./ ./include ./core ./simd ./gfx ./gles2
10+
VPATH=./ ./include ./core ./simd ./gfx
1111

1212
objects= \
1313
device.o \

0 commit comments

Comments
 (0)