Setup for building both debug and release build for side by side deployment

This commit is contained in:
Bastiaan Olij
2021-09-29 10:47:08 +10:00
parent 6a720e5c7c
commit 0f47ba54ee
2 changed files with 38 additions and 26 deletions

View File

@@ -4,5 +4,7 @@ entry_symbol = "example_library_init"
[libraries]
linux.64 = "bin/x11/libgdexample.so"
windows.64 = "bin/win64/libgdexample.dll"
linux.64.debug = "bin/libgdexample.linux.debug.64.so"
linux.64.release = "bin/libgdexample.linux.release.64.so"
windows.64.debug = "bin/libgdexample.windows.debug.64.dll"
windows.64.release = "bin/libgdexample.windows.release.64.dll"