mirror of
https://github.com/nasa/trick.git
synced 2024-12-24 15:26:41 +00:00
48f6f76ef3
- Update S_overrides.mk for SIM_test_varserv so it links correctly in 32 bit (why did only that one have a problem? the world will never know) - Stop testing Debian Bookworm on python2.7 since support was removed - Fix some TrickOps unit tests
14 lines
474 B
Makefile
14 lines
474 B
Makefile
TRICK_CFLAGS += -I./models
|
|
TRICK_CXXFLAGS += -I./models -I$(GTEST_HOME)/include -std=c++11
|
|
|
|
all: test_client
|
|
clean: clean_test_client
|
|
|
|
TEST_CLIENT_LIBS += -L${GTEST_HOME}lib64 -L${GTEST_HOME}lib -lgtest -lgtest_main -lpthread
|
|
|
|
test_client: models/test_client/test_client.cpp
|
|
cd models/test_client; $(TRICK_CXX) test_client.cpp $(TRICK_SYSTEM_LDFLAGS) $(TRICK_CXXFLAGS) -o test_client $(TEST_CLIENT_LIBS) -std=c++11
|
|
|
|
clean_test_client:
|
|
rm -f models/test_client/test_client
|