Skip to content

Commit

Permalink
Merge pull request #6 from mkalten/master
Browse files Browse the repository at this point in the history
major tongseng refresh
  • Loading branch information
mkalten authored Jul 29, 2016
2 parents 85ddaf5 + 33265dc commit 3de88ab
Show file tree
Hide file tree
Showing 78 changed files with 2,962 additions and 4,588 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.o
tongseng
*.swp
TongsengApp/build
TongsengApp/TongsengApp.xcodeproj/iang.*
build
project.xcworkspace
xcuserdata
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,27 @@ SRC=main.cpp \
TUIO/TuioManager.cpp \
TUIO/TuioObject.cpp \
TUIO/TuioCursor.cpp \
TUIO/TuioBlob.cpp \
TUIO/TuioContainer.cpp \
TUIO/TuioPoint.cpp \
TUIO/TuioBlob.cpp \
TUIO/TuioDispatcher.cpp \
TUIO/UdpSender.cpp \
TUIO/OneEuroFilter.cpp \
oscpack/ip/posix/NetworkingUtils.cpp \
oscpack/ip/posix/UdpSocket.cpp \
oscpack/osc/OscOutboundPacketStream.cpp \
oscpack/osc/OscTypes.cpp

OBJS=$(SRC:.cpp=.o)
CPPFLAGS=-ITUIO -Ioscpack
LIBS=-F/System/Library/PrivateFrameworks -framework MultitouchSupport
LIBS=-F/System/Library/PrivateFrameworks -framework MultitouchSupport -framework CoreFoundation
BIN=tongseng

all : $(BIN)

.cpp.o :
g++ -c $(CPPFLAGS) $< -o $@
g++ $(CPPFLAGS) -c $< -o $@

$(BIN) : $(OBJS)
g++ -o $@ $(LIBS) $^
Expand Down
Loading

0 comments on commit 3de88ab

Please sign in to comment.