保存进度

This commit is contained in:
2026-07-14 23:20:12 +08:00
commit 79c836426c
14 changed files with 510 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
BOOST_DIR=D:\develop\sdk\cpp\boost\build\boost_1_89_0_msvc2022
BOOST_INCLUDE_DIR=D:\develop\sdk\cpp\boost\build\boost_1_89_0_msvc2022\include\boost-1_89
BOOST_LIB_DIR=$(BOOST_DIR)\lib
CXXFLAGS=/I $(BOOST_INCLUDE_DIR) /MT /EHsc
LINKFLAGS=/LIBPATH:$(BOOST_LIB_DIR)
# all: static boost.exe shared boost.exe
static_2.exe: ./code/main.cpp
cl ./code/main.cpp $(CXXFLAGS) /Fe"static_2.exe" /link $(LINKFLAGS)
clean:
del *.obj