mirror of
https://github.com/solemnwarning/directplay-lite
synced 2024-12-30 16:45:37 +01:00
The protocol is going to use TLV messages, containing zero or more fields represented using the same TLV header. Functions for (de)serialising DirectPlay message structures will be built on top of these classes.
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
CXX := i686-w64-mingw32-g++
|
|
CXXFLAGS := -std=c++11 -Wall
|
|
|
|
TEST_CXXFLAGS := $(CXXFLAGS) -I./googletest/include/
|
|
|
|
all: dpnet.dll
|
|
|
|
check: tests/all-tests.exe
|
|
wine tests/all-tests.exe
|
|
|
|
dpnet.dll: src/dpnet.o src/dpnet.def src/DirectPlay8Address.o src/DirectPlay8Peer.o src/network.o src/packet.o
|
|
$(CXX) $(CXXFLAGS) -Wl,--enable-stdcall-fixup -shared -o $@ $^ -ldxguid -lws2_32 -static-libstdc++ -static-libgcc
|
|
|
|
tests/DirectPlay8Address.exe: tests/DirectPlay8Address.o src/DirectPlay8Address.o googletest/src/gtest-all.o googletest/src/gtest_main.o
|
|
$(CXX) $(TEST_CXXFLAGS) -o $@ $^ -ldxguid -lole32 -static-libstdc++ -static-libgcc
|
|
|
|
tests/PacketSerialiser.exe: tests/PacketSerialiser.o src/packet.o googletest/src/gtest-all.o googletest/src/gtest_main.o
|
|
$(CXX) $(TEST_CXXFLAGS) -o $@ $^ -ldxguid -lole32 -static-libstdc++ -static-libgcc
|
|
|
|
tests/all-tests.exe: tests/DirectPlay8Address.o src/DirectPlay8Address.o \
|
|
tests/PacketSerialiser.o tests/PacketDeserialiser.o src/packet.o \
|
|
googletest/src/gtest-all.o googletest/src/gtest_main.o
|
|
$(CXX) $(TEST_CXXFLAGS) -o $@ $^ -ldxguid -lole32 -static-libstdc++ -static-libgcc
|
|
|
|
src/%.o: src/%.cpp
|
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
tests/%.o: tests/%.cpp
|
|
$(CXX) $(TEST_CXXFLAGS) -c -o $@ $<
|
|
|
|
googletest/src/%.o: googletest/src/%.cc
|
|
$(CXX) $(TEST_CXXFLAGS) -I./googletest/ -c -o $@ $<
|