Skip to content

Commit 9b48a43

Browse files
move sources under ./src
1 parent 977c0e7 commit 9b48a43

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ find_library(LIBLOGOSDELIVERY_PATH NAMES ${LIBLOGOSDELIVERY_NAMES} PATHS ${LIBLO
142142

143143
# Plugin sources
144144
set(PLUGIN_SOURCES
145-
delivery_module_plugin.cpp
146-
delivery_module_plugin.h
147-
delivery_module_interface.h
145+
src/delivery_module_plugin.cpp
146+
src/delivery_module_plugin.h
147+
src/delivery_module_interface.h
148148
)
149149

150150
# Add liblogos interface header
@@ -203,7 +203,7 @@ endif()
203203

204204
# Include directories
205205
target_include_directories(delivery_module_plugin PRIVATE
206-
${CMAKE_CURRENT_SOURCE_DIR}
206+
${CMAKE_CURRENT_SOURCE_DIR}/src
207207
${LIBLOGOSDELIVERY_DIR}
208208
)
209209

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class DeliveryModulePlugin : public QObject, public DeliveryModuleInterface
1111
{
1212
Q_OBJECT
13-
Q_PLUGIN_METADATA(IID DeliveryModuleInterface_iid FILE "metadata.json")
13+
Q_PLUGIN_METADATA(IID DeliveryModuleInterface_iid FILE "../metadata.json")
1414
Q_INTERFACES(DeliveryModuleInterface PluginInterface)
1515

1616
public:

0 commit comments

Comments
 (0)