mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
14 lines
512 B
Makefile
14 lines
512 B
Makefile
|
|
TRICK_CFLAGS += -I./models
|
|
TRICK_CXXFLAGS += -I./models
|
|
|
|
all: test_client
|
|
clean: clean_test_client
|
|
|
|
TEST_CLIENT_LIBS += -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lgtest_main -lpthread -L${TRICK_LIB_DIR} -ltrick_var_binary_parser
|
|
|
|
test_client: models/test_client/test_client.cpp
|
|
cd models/test_client; $(TRICK_CXX) test_client.cpp -o test_client $(TRICK_CXXFLAGS) $(TRICK_SYSTEM_CXXFLAGS) -I$(TRICK_HOME)/include $(TEST_CLIENT_LIBS) -std=c++11
|
|
|
|
clean_test_client:
|
|
rm -f models/test_client/test_client
|