uchardet/src/tools/CMakeLists.txt
2016-03-22 01:23:04 +03:00

24 lines
286 B
CMake

set(
UCHARDET_SOURCES
uchardet.cpp
)
set(UCHARDET_BINARY uchardet)
add_executable(
${UCHARDET_BINARY}
${UCHARDET_SOURCES}
)
target_link_libraries(
${UCHARDET_BINARY}
${UCHARDET_LIBRARY}
)
install(
TARGETS
${UCHARDET_BINARY}
RUNTIME DESTINATION
${CMAKE_INSTALL_BINDIR}
)