aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index fc413d4..a4e493e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -24,6 +24,14 @@ using namespace std::chrono;
// TODO: Remove install.sh when sibs supports installation of packages (so it can install itself)
+// TODO: Move package tests, include_dirs and ignore_dirs under config in project.conf.
+// Package object should only contain metadata for the package, which is used for finding dependencies
+// and when building a list of installed packages / available packages.
+
+// TODO: Allow different platforms to have different dependencies.
+// This can be done by specifying dependencies under [dependencies.platform] instead of [dependencies],
+// for example for win32: [dependencies.win32]
+
#if OS_FAMILY == OS_FAMILY_POSIX
#define ferr std::cerr
#else