Leave directory structure flat

master
Lukas Fürmetz 9 years ago
parent 3edc5bae91
commit e6dc9d8ebe
  1. 6
      CMakeLists.txt
  2. 4
      config.cpp
  3. 6
      config.h
  4. 0
      config.ui
  5. 2
      pass.cpp
  6. 0
      plasma-runner-pass_config.desktop

@ -17,10 +17,10 @@ set(krunner_pass_SRCS
)
set(kcm_krunner_pass_SRCS
config/pass_config.cpp
config.cpp
)
ki18n_wrap_ui(kcm_krunner_pass_SRCS config/pass_config.ui)
ki18n_wrap_ui(kcm_krunner_pass_SRCS config.ui)
add_library(kcm_krunner_pass MODULE ${kcm_krunner_pass_SRCS})
target_link_libraries(kcm_krunner_pass
Qt5::Core
@ -43,5 +43,5 @@ target_link_libraries(krunner_pass KF5::Runner Qt5::Widgets
add_dependencies(krunner_pass kcm_krunner_pass)
install(TARGETS krunner_pass kcm_krunner_pass DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES plasma-runner-pass.desktop config/plasma-runner-pass_config.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES plasma-runner-pass.desktop plasma-runner-pass_config.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES krunner_pass.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR})

@ -21,7 +21,7 @@
#include <krunner/abstractrunner.h>
#include <QToolButton>
#include "pass_config.h"
#include "config.h"
K_PLUGIN_FACTORY(PassConfigFactory, registerPlugin<PassConfig>("kcm_krunner_pass");)
@ -201,4 +201,4 @@ void PassConfig::defaults()
}
#include "pass_config.moc"
#include "config.moc"

@ -16,10 +16,10 @@
* If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
#ifndef PASS_CONFIG_H
#define PASS_CONFIG_H
#ifndef CONFIG_H
#define CONFIG_H
#include "ui_pass_config.h"
#include "ui_config.h"
#include <KCModule>
#include <KConfigGroup>

@ -31,7 +31,7 @@
#include <stdlib.h>
#include "pass.h"
#include "config/pass_config.h"
#include "config.h"
using namespace std;

Loading…
Cancel
Save