diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:06:29 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:06:29 -0600 |
commit | c0b24fe164924298d7e6ae33964b3c65fadbcba3 (patch) | |
tree | 2ba50375d78b077b266b224e4413150ef3e60a15 /src/profileengine | |
parent | 33d15e862e09fbcbb05e209f832414bd8a01291e (diff) | |
download | tdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.tar.gz tdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'src/profileengine')
-rw-r--r-- | src/profileengine/editor/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/profileengine/lib/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/profileengine/lib/profile.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/profileengine/editor/CMakeLists.txt b/src/profileengine/editor/CMakeLists.txt index ddc82809..cfd7c59c 100644 --- a/src/profileengine/editor/CMakeLists.txt +++ b/src/profileengine/editor/CMakeLists.txt @@ -25,7 +25,7 @@ link_directories( tde_add_executable( kdevprofileeditor SOURCES main.cpp - LINK profileeditor-static profileengine-shared kio-shared + LINK profileeditor-static profileengine-shared tdeio-shared DESTINATION ${BIN_INSTALL_DIR} ) diff --git a/src/profileengine/lib/CMakeLists.txt b/src/profileengine/lib/CMakeLists.txt index cd36b2da..286a0e04 100644 --- a/src/profileengine/lib/CMakeLists.txt +++ b/src/profileengine/lib/CMakeLists.txt @@ -32,6 +32,6 @@ install( FILES tde_add_library( profileengine SHARED SOURCES profileengine.cpp profile.cpp VERSION 0.0.0 - LINK kio-shared + LINK tdeio-shared DESTINATION ${LIB_INSTALL_DIR} ) diff --git a/src/profileengine/lib/profile.cpp b/src/profileengine/lib/profile.cpp index e568313f..db6cb3fc 100644 --- a/src/profileengine/lib/profile.cpp +++ b/src/profileengine/lib/profile.cpp @@ -23,8 +23,8 @@ #include <kdebug.h> #include <kstandarddirs.h> -#include <kconfig.h> -#include <kio/netaccess.h> +#include <tdeconfig.h> +#include <tdeio/netaccess.h> Profile::Profile(Profile *parent, const TQString &name) :m_parent(parent), m_name(name) |