[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4029: See if this makes phobos's Panther builds not fail. (in vidalia/trunk/src/tools: po2ts ts2po)
Author: edmanm
Date: 2009-08-12 00:37:54 -0400 (Wed, 12 Aug 2009)
New Revision: 4029
Modified:
vidalia/trunk/src/tools/po2ts/CMakeLists.txt
vidalia/trunk/src/tools/ts2po/CMakeLists.txt
Log:
See if this makes phobos's Panther builds not fail.
Modified: vidalia/trunk/src/tools/po2ts/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/tools/po2ts/CMakeLists.txt 2009-08-12 04:31:19 UTC (rev 4028)
+++ vidalia/trunk/src/tools/po2ts/CMakeLists.txt 2009-08-12 04:37:54 UTC (rev 4029)
@@ -23,6 +23,12 @@
${QT_QTCORE_LIBRARY}
${QT_QTXML_LIBRARY}
)
+if (APPLE)
+ target_link_libraries(po2ts
+ "-framework AppKit"
+ iconv
+ )
+endif(APPLE)
## Remember the location of po2ts so we can use it in custom commands
get_target_property(PO2TS_EXECUTABLE po2ts LOCATION)
Modified: vidalia/trunk/src/tools/ts2po/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/tools/ts2po/CMakeLists.txt 2009-08-12 04:31:19 UTC (rev 4028)
+++ vidalia/trunk/src/tools/ts2po/CMakeLists.txt 2009-08-12 04:37:54 UTC (rev 4029)
@@ -44,6 +44,12 @@
${QT_QTCORE_LIBRARY}
${QT_QTXML_LIBRARY}
)
+if (APPLE)
+ target_link_libraries(ts2po
+ "-framework AppKit"
+ iconv
+ )
+endif(APPLE)
## Remember the location of ts2po so we can use it in custom commands
get_target_property(TS2PO_EXECUTABLE ts2po LOCATION)