Hi all, I see that you can define a library path i...
# multiplatform
p
Hi all, I see that you can define a library path in a def file for
ios_arm64
and a library path for
ios_x64
but I am also building for iosSimulatorArm64 and want to target a path for it as well. How can I do so? IE, these two work:
Copy code
libraryPaths.ios_arm64 = ../../target/aarch64-apple-ios/release
libraryPaths.ios_x64 = ../../target/x86_64-apple-ios/release
but this does not work:
Copy code
libraryPaths.ios_simulator_arm64 = ../../target/aarch64-apple-ios-sim/release
Nevermind, looks like doing
libraryPaths.ios_simulator_arm64
does work. IntelliJ Idea just says it shouldn’t.