aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6a330ca..290ed9e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -61,12 +61,6 @@ using namespace std::chrono;
// to compare strings. Duplicate options can happen if for example a project has two dependencies and both dependencies
// have dependency on the same package (would be common for example with boost libraries or libraries that dpepend on boost)
-// TODO: Create symlink to dependencies, for example if we have dependency on xxhash which has xxhash.h in its root directory,
-// then you should be able to include it from dependant project by typing #include "xxhash/xxhash.h"
-// that means we create a symlink with the dependency name to the dependency version directory.
-// This will make it easier to prevent clashes in header file names and it's easier to see from the include statement
-// what exactly we are including.
-
// TODO: Implement link-time-optimization which should be used if building with a certain optimization level (sibs build)
// TODO (bug): Fix issue where running sibs-build in a project that uses cmake wont build and run tests