Merge pull request #685 from paddy-exe/master

pull/686/head
Hugo Locurcio 2022-01-29 17:21:33 +01:00 committed by GitHub
commit 4dddd0b55b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -56,8 +56,12 @@ entry_symbol = "example_library_init"
[libraries] [libraries]
linux.64 = "bin/x11/libgdexample.so" linux.64.debug = "bin/libgdexample.linux.debug.64.so"
windows.64 = "bin/win64/libgdexample.dll" 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"
macos.debug = "bin/libgdexample.debug.framework"
macos.release = "bin/libgdexample.release.framework"
``` ```
The `entry_symbol` is the name of the function that initializes your library. It should be similar to following layout: The `entry_symbol` is the name of the function that initializes your library. It should be similar to following layout: