insert erase find
This commit is contained in:
@ -14,12 +14,12 @@ depdir = "./dependencies/winx64" #local pre-compiled dependency libraries and th
|
||||
installdir = "../../winx64" #directory to install to when finished
|
||||
builddir = "./build_msvc64"
|
||||
|
||||
doinstall = False #copies the build_output to the install dir when finished
|
||||
doinstall = True #copies the build_output to the install dir when finished
|
||||
cc = "cl" #compiler
|
||||
cflags = "/O2"
|
||||
libraries = "lib{}.lib".format(libname)
|
||||
cflags = "/O2 /EHsc"
|
||||
libraries = "lib{}.lib libamsmathutil2.msvc64.lib".format(libname)
|
||||
libdirs = "/LIBPATH:{} /LIBPATH:{}/lib /LIBPATH:{}/lib".format(builddir,commondir,depdir)
|
||||
linkerflags = ""
|
||||
linkerflags = "-static -static-libgcc -Wl,-rpath=."
|
||||
srcexts = [".c",".cpp"]
|
||||
binsrc = ["main.c","main.cpp"] #ignore these files when compiling the static library
|
||||
|
||||
|
||||
Reference in New Issue
Block a user