added :init-name to asdf:make-build

This commit is contained in:
ava fox 2020-11-23 23:23:42 -05:00
parent cc3011dc0d
commit 6aa76599b9

View file

@ -11,7 +11,8 @@
(asdf:make-build "my-app"
:monolithic t
:type :static-library
:move-here "./")
:move-here "./"
:init-name "init_lib_MY_APP__ALL_SYSTEMS")
(let ((lib-name #+msvc "my_app_lib.lib"
#-msvc "libmy_app_lib.a"))
@ -22,3 +23,4 @@
#-msvc ".a")
lib-name))
(eql:qq)