Files
@ 34ec0df769f1
Branch filter:
Location: libtransport.git/spectrum/src/CMakeLists.txt - annotation
34ec0df769f1
602 B
text/plain
avoid WTF-8.
what arrives from XMPP is already UTF-8 encoded, so applying UTF-8 again
produces somewhat unfortunate results.
this line is not always necessary. before this change, the code was
dependent on the locale.
what arrives from XMPP is already UTF-8 encoded, so applying UTF-8 again
produces somewhat unfortunate results.
this line is not always necessary. before this change, the code was
dependent on the locale.
96e0e9f7a678 96e0e9f7a678 96e0e9f7a678 fe3aa40faa22 96e0e9f7a678 6cffbaebf81b 6cffbaebf81b 4c87620c9f71 b1e661969b89 96e0e9f7a678 fe3aa40faa22 fe3aa40faa22 fe3aa40faa22 fe3aa40faa22 fe3aa40faa22 06ea1ee6642d fe3aa40faa22 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f 36056deeb90f | cmake_minimum_required(VERSION 2.6)
FILE(GLOB SRC *.cpp)
ADD_EXECUTABLE(spectrum2 ${SRC})
ADD_DEPENDENCIES(spectrum2 spectrum2_libpurple_backend)
ADD_DEPENDENCIES(spectrum2 spectrum2_libircclient-qt_backend)
target_link_libraries(spectrum2 transport ${SWIFTEN_LIBRARY} ${LOG4CXX_LIBRARIES})
INSTALL(TARGETS spectrum2 RUNTIME DESTINATION bin)
INSTALL(FILES
sample2.cfg
RENAME spectrum.cfg.example
DESTINATION /etc/spectrum2/transports
)
INSTALL(FILES
backend-logging.cfg
DESTINATION /etc/spectrum2
)
INSTALL(FILES
logging.cfg
DESTINATION /etc/spectrum2
)
|