use shared library
This commit is contained in:
+40
-20
@@ -11,73 +11,93 @@ corlib = "*"
|
||||
"CxxBuildTool.git" = {Git = "https://git.unicon-gmbh.de/Rune/CxxBuildTool.git"}
|
||||
|
||||
[Configs.Debug.Win32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Debug.Win64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Debug.Linux32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Debug.Linux64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Debug.macOS]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dylib\")"]
|
||||
|
||||
[Configs.Debug.wasm]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
|
||||
[Configs.Release.Win32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Release.Win64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Release.Linux32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Release.Linux64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Release.macOS]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dylib\")"]
|
||||
|
||||
[Configs.Release.wasm]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
|
||||
[Configs.Paranoid.Win32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Paranoid.Win64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Paranoid.Linux32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Paranoid.Linux64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Paranoid.macOS]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dylib\")"]
|
||||
|
||||
[Configs.Paranoid.wasm]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
|
||||
[Configs.Test.Win32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Test.Win64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.lib"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.lib"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dll\")"]
|
||||
|
||||
[Configs.Test.Linux32]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Test.Linux64]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.so\")"]
|
||||
|
||||
[Configs.Test.macOS]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
LibPaths = ["$(BuildDir)/SDL3.a"]
|
||||
PostBuildCmds = ["CopyToDependents(\"$(BuildDir)/SDL3.dylib\")"]
|
||||
|
||||
[Configs.Test.wasm]
|
||||
LibPaths = ["$(BuildDir)/SDL3-static.a"]
|
||||
|
||||
Reference in New Issue
Block a user