diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:29:30 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:29:30 +0800 |
commit | 1f8dde71118ee0e9928913544f5aebe44247246d (patch) | |
tree | 9a1762795f94a7df88a6f8b51e2a715dc79eeb92 /indra | |
parent | 820a26b8715716923d1af02f13abacfc087aa482 (diff) |
Make packages/lib/release directory automatically
cause it's needed at least on macOS, where the command to install
the FMOD (which is the one done earliest) library is
execute_process(COMMAND lipo), and not file(COPY) that would imply
a mkdir.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/cmake/FMODSTUDIO.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/cmake/FMODSTUDIO.cmake b/indra/cmake/FMODSTUDIO.cmake index a8bf087ece..313ee2cde7 100644 --- a/indra/cmake/FMODSTUDIO.cmake +++ b/indra/cmake/FMODSTUDIO.cmake @@ -31,6 +31,7 @@ if (USE_FMODSTUDIO) # as accessing the private LL location will fail if you don't have the credential include(Prebuilt) if (USESYSTEMLIBS AND (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/fmodstudio_installed OR NOT ${fmodstudio_installed} EQUAL 0)) + file(MAKE_DIRECTORY ${LIBS_PREBUILT_DIR}/lib/release) if (DARWIN) execute_process( COMMAND hdiutil attach -noverify fmodstudioapi20223mac-installer.dmg |