commit 01324b550c1484f1410e4454c19682f85dcd2e0a Author: wangjiacai Date: Thu Jan 13 16:32:15 2022 +0800 Initial diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5901d82 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +DIR=E:\code\src\boost_1_74_0 +INC=-I${DIR} +LIB=-L${DIR}\stage\lib -lboost_test_exec_monitor-mgw8-mt-x64-1_74 + +boosttest: boosttest.o + g++ -o boosttest obj\boosttest.o ${LIB} + +boosttest.o: src\boosttest.cpp + g++ -o obj\boosttest.o src\boosttest.cpp -c ${INC} + diff --git a/src/boosttest.cpp b/src/boosttest.cpp new file mode 100644 index 0000000..b67e67b --- /dev/null +++ b/src/boosttest.cpp @@ -0,0 +1,6 @@ +#define BOOST_TEST_MODULE "test" +#include +#include + +BOOST_AUTO_TEST_SUITE(script) +BOOST_AUTO_TEST_SUITE_END() \ No newline at end of file