aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-01-06 10:18:16 +0100
committerdec05eba <dec05eba@protonmail.com>2018-01-06 10:19:37 +0100
commit9bf72ceea8d924492aac5969c14650517849658b (patch)
treea8a8b279af8ab99b27677f5d3e99c108bb5b008b /src
parentad3b5099263e5977d1de9bfcff715a92009e8355 (diff)
Fix dynamic lib dependencies in packages with no source files
Packages with no source files do not output a library that is included by dependencies, so we need to give our dependencies to the dependant package
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index f4d022e..a2e6565 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -57,6 +57,8 @@ using namespace std::chrono;
// TODO: Add support for common package managers (in distros). If package with the dependency version exists in package manager, install and use it instead
+// TODO: Make dependency/project names case insensitive. This means we can't use pkgconfig
+
#if OS_FAMILY == OS_FAMILY_POSIX
#define ferr std::cerr
#else