Changeset 2833 for vidalia/trunk/src
- Timestamp:
- 07/03/08 22:45:48 (5 months ago)
- Location:
- vidalia/trunk/src
- Files:
-
- 3 modified
-
tools/po2ts/CMakeLists.txt (modified) (1 diff)
-
tools/ts2po/CMakeLists.txt (modified) (1 diff)
-
vidalia/i18n/CMakeLists.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vidalia/trunk/src/tools/po2ts/CMakeLists.txt
r2747 r2833 22 22 target_link_libraries(po2ts ${QT_LIBRARIES}) 23 23 24 ## Remember the location of po2ts so we can use it in custom commands 25 get_target_property(PO2TS_EXECUTABLE po2ts LOCATION) 26 set(VIDALIA_PO2TS_EXECUTABLE ${PO2TS_EXECUTABLE} 27 CACHE STRING "Location of Vidalia's po2ts converter." FORCE) 28 -
vidalia/trunk/src/tools/ts2po/CMakeLists.txt
r2817 r2833 43 43 target_link_libraries(ts2po ${QT_LIBRARIES}) 44 44 45 ## Remember the location of ts2po so we can use it in custom commands 46 get_target_property(TS2PO_EXECUTABLE ts2po LOCATION) 47 set(VIDALIA_TS2PO_EXECUTABLE ${TS2PO_EXECUTABLE} 48 CACHE STRING "Location of Vidalia's ts2po converter." FORCE) 49 -
vidalia/trunk/src/vidalia/i18n/CMakeLists.txt
r2804 r2833 41 41 42 42 ## Create a target that converts all .po files to Qt .qm files 43 add_custom_target(i18n ALL DEPENDS ${vidalia_QMS}) 43 add_custom_target(i18n DEPENDS ${vidalia_QMS}) 44 add_dependencies(i18n po2ts) 44 45 45 46 ## Create a target that runs lupdate for all the source and UI files 46 47 add_custom_target(i18n-update) 48 add_dependencies(i18n-update po2ts ts2po) 47 49 vidalia_update_po(i18n-update ${vidalia_PO}) 48 50
