diff options
author | 2010-07-16 22:51:22 +0300 | |
---|---|---|
committer | 2010-07-16 22:51:22 +0300 | |
commit | 1aaf600d004945a745c5ba9e15e8be9007700593 (patch) | |
tree | e92eacfa56055b3e58223e9605d4a558df554a00 /segget/segget.h | |
parent | Add to segget.conf file section [provide_proxy_fetcher_to_others]. (diff) | |
download | idfetch-1aaf600d004945a745c5ba9e15e8be9007700593.tar.gz idfetch-1aaf600d004945a745c5ba9e15e8be9007700593.tar.bz2 idfetch-1aaf600d004945a745c5ba9e15e8be9007700593.zip |
Fix: Generate one .o per .cpp, and link them together.
Diffstat (limited to 'segget/segget.h')
-rw-r--r-- | segget/segget.h | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/segget/segget.h b/segget/segget.h index d2e9b2c..ac44294 100644 --- a/segget/segget.h +++ b/segget/segget.h @@ -35,22 +35,21 @@ #include <json/json.h> #include <ncurses.h> #include <pthread.h> -#include "checksum.cpp" -#include "config.cpp" -#include "connection.cpp" -#include "distfile.cpp" -#include "mirror.cpp" -#include "network.cpp" -#include "networkbroker.cpp" -#include "pkg.cpp" -#include "segment.cpp" -#include "settings.cpp" -#include "stats.cpp" -#include "str.cpp" -#include "tui.cpp" -#include "utils.cpp" -#include "ui_server.cpp" -#include "proxyfetcher.cpp" +#include "checksum.h" +#include "config.h" +#include "distfile.h" +#include "mirror.h" +#include "network.h" +#include "networkbroker.h" +#include "pkg.h" +#include "segment.h" +#include "settings.h" +//#include "stats.h" +#include "str.h" +#include "tui.h" +#include "utils.h" +#include "ui_server.h" +#include "proxyfetcher.h" using namespace std; |