@ -4,7 +4,7 @@ solution "Symmetry"
location ( _ACTION )
configuration { " linux " , " macosx " }
postbuildcommands { " ln -fs " .. os.getcwd ( ) .. " /../assets debug/assets " }
postbuildcommands { " ln -fs " .. os.getcwd ( ) .. " /../assets " .. os.getcwd ( ) .. " debug " }
postbuildcommands { " ln -fs " .. os.getcwd ( ) .. " /../assets " .. os.getcwd ( ) .. " release " }
buildoptions { " -Wall " , " -std=c99 " }
@ -118,6 +118,10 @@ solution "Symmetry"
}
links { " ode_doubled " , " SDL2 " }
configuration { " not windows " }
postbuildcommands { " ln -fs " .. os.getcwd ( ) .. " /../assets " .. os.getcwd ( ) .. " / " .. _ACTION .. " /debug " }
postbuildcommands { " ln -fs " .. os.getcwd ( ) .. " /../assets " .. os.getcwd ( ) .. " / " .. _ACTION .. " /release " }
newaction {
trigger = " build_addon " ,
description = " Build blender addon into zip file that can be loaded into blender, needs zip installed and available on PATH(Only works on bash/nix-style shell for now) " ,