Changeset 19 in pacpussensors for trunk/LMOComponent
- Timestamp:
- Jul 31, 2013, 11:58:28 AM (11 years ago)
- Location:
- trunk/LMOComponent
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMOComponent/CMakeLists.txt
r17 r19 3 3 ################################################################################ 4 4 add_definitions( -DLMOCOMPONENT_EXPORTS ) 5 6 ################################################################################7 # Qt8 if(QT4_FOUND)9 set(QT_USE_QTXML true)10 set(QT_USE_QTNETWORK true)11 include(${QT_USE_FILE})12 else()13 message(ERROR "Qt4 needed")14 endif()15 16 add_definitions(17 ${QT_DEFINITIONS}18 )19 5 20 6 ################################################################################ … … 46 32 47 33 set(MOC_FILES 48 LMOComponent.h34 #LMOComponent.h 49 35 ${PLUGIN_H} 50 36 ) … … 55 41 ################################################################################ 56 42 # Call moc, uic 57 qt 4_wrap_cpp(MOC_SRCS43 qt_wrap_cpp(MOC_SRCS 58 44 ${MOC_FILES} 59 45 ) 60 qt 4_wrap_ui(UI_SRCS46 qt_wrap_ui(UI_SRCS 61 47 ${UI_FILES} 62 48 ) … … 99 85 # INSTALL 100 86 pacpus_install(${PROJECT_NAME}) 101 -
trunk/LMOComponent/LMOComponent.cpp
r17 r19 5 5 6 6 #include "LMOComponent.h" 7 8 #include <Pacpus/kernel/Log.h> 9 #include <Pacpus/kernel/ComponentFactory.h> 7 10 8 11 using namespace pacpus; -
trunk/LMOComponent/LMOComponent.h
r17 r19 19 19 20 20 #include "Pacpus/kernel/ComponentBase.h" 21 #include "LMOComponentConfig.h" 21 22 22 23 namespace pacpus { … … 25 26 : public ComponentBase 26 27 { 27 Q_OBJECT28 //Q_OBJECT 28 29 29 30 public:
Note:
See TracChangeset
for help on using the changeset viewer.