aboutsummaryrefslogtreecommitdiff
path: root/src/CmakeModule.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-04-29 12:57:33 +0200
committerdec05eba <dec05eba@protonmail.com>2018-04-29 12:57:37 +0200
commit8d3a83a20a57cd505b2f98a542903a3aee0c2b45 (patch)
treef22a67990a9b9f6f0729c4466124a8c10b2d4228 /src/CmakeModule.cpp
parent34563dda0ccfc34ce62f0bfcfc20f2b0fa48833e (diff)
Change sibs cache directory to standard one, remove library archive when it has been extracted
Diffstat (limited to 'src/CmakeModule.cpp')
-rw-r--r--src/CmakeModule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CmakeModule.cpp b/src/CmakeModule.cpp
index 3beb792..99be269 100644
--- a/src/CmakeModule.cpp
+++ b/src/CmakeModule.cpp
@@ -19,7 +19,7 @@ namespace sibs
if (!globalLibDirResult)
return Result<bool>::Err(globalLibDirResult);
FileString globalLibDir = globalLibDirResult.unwrap();
- globalLibDir += TINYDIR_STRING("/.sibs/lib");
+ globalLibDir += TINYDIR_STRING("/.cache/sibs/lib");
Result<bool> createGlobalLibDirResult = createDirectoryRecursive(globalLibDir.c_str());
if(createGlobalLibDirResult.isErr())
return createGlobalLibDirResult;