Changeset 938187


Ignore:
Timestamp:
02/03/12 14:51:39 (3 months ago)
Author:
Micke Prag <micke.prag@…>
Branches:
('master', 'deebf2045e7119c339412580f37a1e653f7d5715')('controller-upgrade', '00f95d22e12d96ef089e0902ef62ae8ce841dc6f')
Children:
ceec23dfed3ad0e67cef7e12bc29ef881880a79f
Parents:
189ddc9383a342debf5c6388a8605e7715480a63
git-author:
Micke Prag <micke.prag@telldus.se>2012-02-03 14:51:39+01:00
git-committer:
Micke Prag <micke.prag@telldus.se>2012-02-03 14:51:39+01:00
Message:

Move the event system into common to be used by our threads

Location:
telldus-core
Files:
2 edited
7 moved

Legend:

Unmodified
Added
Removed
  • telldus-core/common/CMakeLists.txt

    r31a0b2 r938187  
    55######## Non configurable options  ######## 
    66SET( telldus-common_SRCS 
     7        Event.cpp 
    78        Message.cpp 
    89        Mutex.cpp 
     
    1314SET( telldus-common_HDRS 
    1415        common.h 
     16        Event.h 
     17        EventHandler.h 
    1518        Message.h 
    1619        Mutex.h 
     
    3033        ADD_DEFINITIONS( -D_MACOSX ) 
    3134        LIST(APPEND  telldus-common_SRCS 
     35                Event_unix.cpp 
     36                EventHandler_unix.cpp 
    3237                Socket_unix.cpp 
    3338                stdlibc_workaround.cpp #Remove this when we drop support for 10.5 
     
    4247        ADD_DEFINITIONS( -D_WINDOWS ) 
    4348        LIST(APPEND  telldus-common_SRCS 
     49                Event_win.cpp 
     50                EventHandler_win.cpp 
    4451                Socket_win.cpp 
    4552        ) 
     
    4956        ADD_DEFINITIONS( -D_FREEBSD ) 
    5057        LIST(APPEND  telldus-common_SRCS 
     58                Event_unix.cpp 
     59                EventHandler_unix.cpp 
    5160                Socket_unix.cpp 
    5261        ) 
  • telldus-core/service/CMakeLists.txt

    rf15fd8 r938187  
    1919        Device.cpp 
    2020        DeviceManager.cpp 
    21         Event.cpp 
    2221        Log.cpp 
    2322        Sensor.cpp 
     
    7978        Device.h 
    8079        DeviceManager.h 
    81         Event.h 
    82         EventHandler.h 
    8380        EventUpdateManager.h 
    8481        Log.h 
     
    117114                ConnectionListener_unix.cpp 
    118115                ControllerListener_mac.cpp 
    119                 Event_unix.cpp 
    120                 EventHandler_unix.cpp 
    121116                SettingsCoreFoundationPreferences.cpp 
    122117        ) 
     
    135130        LIST(APPEND telldus-service_SRCS 
    136131                ConnectionListener_win.cpp 
    137                 Event_win.cpp 
    138                 EventHandler_win.cpp 
    139132                main_win.cpp 
    140133                SettingsWinRegistry.cpp 
     
    165158        LIST(APPEND telldus-service_SRCS 
    166159                ConnectionListener_unix.cpp 
    167                 Event_unix.cpp 
    168                 EventHandler_unix.cpp 
    169160                main_unix.cpp 
    170161                SettingsConfuse.cpp 
Note: See TracChangeset for help on using the changeset viewer.