--- smsdaemon/CMakeLists.txt 2008/12/18 00:03:05 194 +++ smsdaemon/CMakeLists.txt 2009/09/16 09:20:01 324 @@ -7,7 +7,7 @@ FIND_PACKAGE(CURL) - +FIND_PACKAGE(EXPAT) IF(CURL_FOUND) ELSE(CURL_FOUND) @@ -34,14 +34,15 @@ ModemTransceiver.cpp Sms.cpp Common.cpp Util.cpp TaskManager.cpp daemon.cpp kbhit.cpp PluginManager.cpp Plugin.cpp SmsPdu.cpp SmsDaemon.cpp Task.cpp Spooler.cpp Value.cpp ConfigFile.cpp DebugTransceiver.cpp - SmsToolTransceiver.cpp Logger.cpp HttpClient.cpp + SmsToolTransceiver.cpp Logger.cpp HttpClient.cpp ProxyTransceiver.cpp ProxyPlugin.cpp + AccessManager.cpp ) ADD_EXECUTABLE(smsdaemon main.cpp) -TARGET_LINK_LIBRARIES(smsdaemon smsdaemoncore smsplugins smstasks serialport curl) +TARGET_LINK_LIBRARIES(smsdaemon smsdaemoncore smsplugins smstasks serialport curl expat) ADD_EXECUTABLE(tester tester.cpp) -TARGET_LINK_LIBRARIES(tester smsdaemoncore smsplugins smstasks serialport curl) +TARGET_LINK_LIBRARIES(tester smsdaemoncore smsplugins smstasks serialport curl expat) ADD_EXECUTABLE(smsqueue smsqueue.cpp Util.cpp Spooler.cpp)