aboutsummaryrefslogtreecommitdiff
path: root/src/main.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/main.cpp
parent34563dda0ccfc34ce62f0bfcfc20f2b0fa48833e (diff)
Change sibs cache directory to standard one, remove library archive when it has been extracted
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2223b56..441ec2f 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -43,7 +43,7 @@ using namespace std::chrono;
// Might need to make it possible to define variables if a dependency exists (or doesn't exist) because the code might have
// preprocessor like: USE_LIBSODIUM or NO_LIBSODIUM.
-// TODO: When building a sibs project, add a hardlink in ~/.sibs/lib to it. This allows us to have dependency to a project that we can modify
+// TODO: When building a sibs project, add a hardlink in ~/.cache/sibs/lib to it. This allows us to have dependency to a project that we can modify
// without having to commit & push to remote
// TODO: Check compiler flags generated by cmake and visual studio in debug and release mode and use the same ones when building sibs project.
@@ -429,7 +429,7 @@ void newProjectCreateConf(const string &projectName, const string &projectType,
projectConfStr += asString(SYSTEM_PLATFORM);
projectConfStr += "\"]\n";
projectConfStr += "tests = \"tests\"";
- projectConfStr += "\n";
+ projectConfStr += "\n\n";
projectConfStr += "[dependencies]\n";
FileString projectConfPath = projectPath;