diff --git a/proj-sys/build.rs b/proj-sys/build.rs index 5bdb739b..b5b14fff 100644 --- a/proj-sys/build.rs +++ b/proj-sys/build.rs @@ -107,6 +107,18 @@ fn build_from_source() -> Result> config.define("ENABLE_TIFF", "OFF"); } + if cfg!(target_env = "msvc") { + // rust links the release MVSC runtime + // also for debug builds. If we let + // cmake choose debug/release builds + // based on the underlying cargo build + // version that results in linker errors + config.profile("Release"); + // see + // https://github.com/OSGeo/PROJ/commit/6e9b324ab7bf5909df7e68409e060282db14fa54#diff-af8fe2f9d33a9c3408ff7683bfebd1e2334b4506f559add92406be3e150268fb + config.cxxflag("-DPROJ_DLL="); + } + let proj = config.build(); // Tell cargo to tell rustc to link libproj, and where to find it // libproj will be built in $OUT_DIR/lib