@@ -1,6 +1,6 @@
test/builder
test/CRTP
-
+test/factory
@@ -2,7 +2,8 @@ rm -rf *
echo "开始构建"
g++ -O3 ../CRTP.cpp -o CRTP -std=c++20
g++ -O3 ../builder.cpp -o builder -std=c++20
+g++ -O3 ../factory.cpp -o factory -std=c++20
echo "开始运行"
./builder
-./CRTP
+./CRTP
+./factory