1

Merge pull request #7 from InvalidString/dynamic-feature

when linking dynamically raylib should BUILD_SHARED_LIBS
This commit is contained in:
Evan Pratten 2023-10-16 13:52:20 -04:00 committed by GitHub
commit e952d2f3dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,10 @@ pub fn compile_raylib(raylib_path: &str) {
.define("BUILD_EXAMPLES", "OFF")
.define("CMAKE_BUILD_TYPE", "Release");
if cfg!(feature = "dylib") {
cmake_config.define("BUILD_SHARED_LIBS", "ON");
}
// Set the correct build profile
#[cfg(debug_assertions)]
{