2013-05-17 18:26:08 +02:00
|
|
|
project (sdtui C)
|
2013-07-14 21:08:39 +02:00
|
|
|
cmake_minimum_required (VERSION 2.8.5)
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Moar warnings
|
|
|
|
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
2016-03-14 21:28:44 +01:00
|
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
2013-05-17 18:26:08 +02:00
|
|
|
set (CMAKE_C_FLAGS_DEBUG
|
|
|
|
"${CMAKE_C_FLAGS_DEBUG} -Wall -Wextra -Wno-missing-field-initializers")
|
|
|
|
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
|
|
|
|
|
|
|
# Version
|
|
|
|
set (project_VERSION_MAJOR "0")
|
|
|
|
set (project_VERSION_MINOR "1")
|
|
|
|
set (project_VERSION_PATCH "0")
|
|
|
|
|
|
|
|
set (project_VERSION "${project_VERSION_MAJOR}")
|
|
|
|
set (project_VERSION "${project_VERSION}.${project_VERSION_MINOR}")
|
|
|
|
set (project_VERSION "${project_VERSION}.${project_VERSION_PATCH}")
|
|
|
|
|
2016-01-14 20:32:04 +01:00
|
|
|
# For custom modules
|
|
|
|
set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
|
|
|
|
|
2014-10-14 22:53:53 +02:00
|
|
|
# Dependencies
|
2013-07-14 20:40:58 +02:00
|
|
|
find_package (ZLIB REQUIRED)
|
2016-01-14 20:32:04 +01:00
|
|
|
find_package (Ncursesw REQUIRED)
|
2013-05-17 18:26:08 +02:00
|
|
|
find_package (PkgConfig REQUIRED)
|
2016-01-14 20:32:04 +01:00
|
|
|
pkg_check_modules (dependencies REQUIRED glib-2.0 gio-2.0 pango)
|
2015-02-24 20:33:51 +01:00
|
|
|
|
|
|
|
pkg_check_modules (icu icu-uc icu-i18n)
|
|
|
|
if (NOT icu_FOUND)
|
|
|
|
find_program (icu_CONFIG_EXECUTABLE icu-config)
|
|
|
|
if (NOT icu_CONFIG_EXECUTABLE)
|
|
|
|
message (FATAL_ERROR "ICU not found")
|
|
|
|
endif (NOT icu_CONFIG_EXECUTABLE)
|
|
|
|
|
|
|
|
execute_process (COMMAND ${icu_CONFIG_EXECUTABLE} --cppflags
|
|
|
|
OUTPUT_VARIABLE icu_CPPFLAGS OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
separate_arguments (icu_CPPFLAGS)
|
|
|
|
|
|
|
|
# target_link_libraries() handles linker flags as well
|
|
|
|
execute_process (COMMAND ${icu_CONFIG_EXECUTABLE} --ldflags
|
|
|
|
OUTPUT_VARIABLE icu_LIBRARIES OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
separate_arguments (icu_LIBRARIES)
|
|
|
|
|
|
|
|
# Filter out include directories from the preprocessor flags
|
|
|
|
set (icu_INCLUDE_DIRS)
|
|
|
|
foreach (flag ${icu_CPPFLAGS})
|
|
|
|
if (flag MATCHES "^-I(.*)")
|
|
|
|
list (APPEND icu_INCLUDE_DIRS "${CMAKE_MATCH_1}")
|
|
|
|
endif (flag MATCHES "^-I(.*)")
|
|
|
|
endforeach (flag)
|
|
|
|
|
|
|
|
# This should suffice most of the time, don't care about the rest
|
|
|
|
endif (NOT icu_FOUND)
|
2013-05-17 18:26:08 +02:00
|
|
|
|
2015-10-01 22:27:35 +02:00
|
|
|
find_package (Termo QUIET NO_MODULE)
|
|
|
|
option (USE_SYSTEM_TERMO
|
|
|
|
"Don't compile our own termo library, use the system one" ${Termo_FOUND})
|
|
|
|
|
2014-10-14 22:53:53 +02:00
|
|
|
if (USE_SYSTEM_TERMO)
|
2015-10-01 22:27:35 +02:00
|
|
|
if (NOT Termo_FOUND)
|
|
|
|
message (FATAL_ERROR "System termo library not found")
|
|
|
|
endif (NOT Termo_FOUND)
|
2014-10-14 22:53:53 +02:00
|
|
|
else (USE_SYSTEM_TERMO)
|
|
|
|
add_subdirectory (termo EXCLUDE_FROM_ALL)
|
|
|
|
# We don't have many good choices when we don't want to install it and want
|
|
|
|
# to support older versions of CMake; this is a relatively clean approach
|
|
|
|
# (other possibilities: setting a variable in the parent scope, using a
|
|
|
|
# cache variable, writing a special config file with build paths in it and
|
|
|
|
# including it here, or setting a custom property on the targets).
|
|
|
|
get_directory_property (Termo_INCLUDE_DIRS
|
|
|
|
DIRECTORY termo INCLUDE_DIRECTORIES)
|
|
|
|
set (Termo_LIBRARIES termo-static)
|
|
|
|
endif (USE_SYSTEM_TERMO)
|
|
|
|
|
2015-10-01 22:27:35 +02:00
|
|
|
# We actually don't care about the specific version
|
|
|
|
pkg_search_module (gtk gtk+-3.0 gtk+-2.0)
|
|
|
|
option (WITH_GTK "Compile with GTK+ support" ${gtk_FOUND})
|
|
|
|
|
2015-02-07 21:05:32 +01:00
|
|
|
if (WITH_GTK)
|
2015-10-01 22:27:35 +02:00
|
|
|
if (NOT gtk_FOUND)
|
|
|
|
message (FATAL_ERROR "GTK+ library not found")
|
|
|
|
endif (NOT gtk_FOUND)
|
|
|
|
|
2015-02-07 21:05:32 +01:00
|
|
|
list (APPEND dependencies_INCLUDE_DIRS ${gtk_INCLUDE_DIRS})
|
|
|
|
list (APPEND dependencies_LIBRARY_DIRS ${gtk_LIBRARY_DIRS})
|
|
|
|
list (APPEND dependencies_LIBRARIES ${gtk_LIBRARIES})
|
|
|
|
endif (WITH_GTK)
|
|
|
|
|
|
|
|
link_directories (${dependencies_LIBRARY_DIRS})
|
2015-02-24 20:33:51 +01:00
|
|
|
include_directories (${ZLIB_INCLUDE_DIRS} ${icu_INCLUDE_DIRS}
|
2016-01-14 20:32:04 +01:00
|
|
|
${dependencies_INCLUDE_DIRS} ${NCURSESW_INCLUDE_DIRS}
|
|
|
|
${Termo_INCLUDE_DIRS})
|
2013-05-17 18:26:08 +02:00
|
|
|
|
2014-10-15 00:51:05 +02:00
|
|
|
# Configuration
|
|
|
|
include (CheckFunctionExists)
|
2016-01-14 20:32:04 +01:00
|
|
|
set (CMAKE_REQUIRED_LIBRARIES ${NCURSESW_LIBRARIES})
|
2015-01-20 23:56:29 +01:00
|
|
|
CHECK_FUNCTION_EXISTS ("resizeterm" HAVE_RESIZETERM)
|
2014-10-15 00:51:05 +02:00
|
|
|
|
2013-05-19 02:46:05 +02:00
|
|
|
# Localization
|
|
|
|
find_package (Gettext REQUIRED)
|
2016-03-15 21:56:07 +01:00
|
|
|
file (GLOB project_PO_FILES ${PROJECT_SOURCE_DIR}/po/*.po)
|
2013-05-19 02:46:05 +02:00
|
|
|
GETTEXT_CREATE_TRANSLATIONS (
|
2016-03-15 21:56:07 +01:00
|
|
|
${PROJECT_SOURCE_DIR}/po/${PROJECT_NAME}.pot
|
2013-05-19 02:46:05 +02:00
|
|
|
ALL ${project_PO_FILES})
|
|
|
|
|
2013-05-19 07:49:47 +02:00
|
|
|
# Documentation
|
|
|
|
find_program (XSLTPROC_EXECUTABLE xsltproc)
|
|
|
|
if (NOT XSLTPROC_EXECUTABLE)
|
|
|
|
message (FATAL_ERROR "xsltproc not found")
|
|
|
|
endif (NOT XSLTPROC_EXECUTABLE)
|
|
|
|
|
2016-03-15 21:56:07 +01:00
|
|
|
set (project_MAN_PAGES "${PROJECT_NAME}.1")
|
2013-05-19 07:49:47 +02:00
|
|
|
foreach (page ${project_MAN_PAGES})
|
2016-03-15 21:56:07 +01:00
|
|
|
set (page_output "${PROJECT_BINARY_DIR}/${page}")
|
2013-05-19 07:49:47 +02:00
|
|
|
list (APPEND project_MAN_PAGES_OUTPUT "${page_output}")
|
|
|
|
add_custom_command (OUTPUT ${page_output}
|
|
|
|
COMMAND ${XSLTPROC_EXECUTABLE}
|
|
|
|
--nonet
|
|
|
|
--param make.year.ranges 1
|
|
|
|
--param make.single.year.ranges 1
|
|
|
|
--param man.charmap.use.subset 0
|
|
|
|
--param man.authors.section.enabled 0
|
|
|
|
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
|
2016-03-15 21:56:07 +01:00
|
|
|
"${PROJECT_SOURCE_DIR}/docs/${page}.xml"
|
2013-05-19 07:49:47 +02:00
|
|
|
DEPENDS "docs/${page}.xml"
|
|
|
|
COMMENT "Generating man page for ${page}" VERBATIM)
|
|
|
|
endforeach (page)
|
|
|
|
|
|
|
|
add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES_OUTPUT})
|
|
|
|
|
2013-05-17 18:26:08 +02:00
|
|
|
# Project source files
|
|
|
|
set (project_common_sources
|
2013-07-14 20:40:58 +02:00
|
|
|
src/dictzip-input-stream.c
|
2013-05-17 18:26:08 +02:00
|
|
|
src/generator.c
|
2013-07-14 20:40:58 +02:00
|
|
|
src/stardict.c
|
|
|
|
src/utils.c)
|
2013-05-17 18:26:08 +02:00
|
|
|
set (project_common_headers
|
2016-03-15 21:56:07 +01:00
|
|
|
${PROJECT_BINARY_DIR}/config.h
|
2013-07-14 20:40:58 +02:00
|
|
|
src/dictzip-input-stream.h
|
2013-05-17 18:26:08 +02:00
|
|
|
src/stardict.h
|
|
|
|
src/stardict-private.h
|
2013-07-14 20:40:58 +02:00
|
|
|
src/generator.h
|
|
|
|
src/utils.h)
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Project libraries
|
2015-02-24 20:33:51 +01:00
|
|
|
set (project_common_libraries ${ZLIB_LIBRARIES} ${icu_LIBRARIES}
|
2016-01-14 20:32:04 +01:00
|
|
|
${dependencies_LIBRARIES} ${NCURSESW_LIBRARIES} termo-static)
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Create a common project library so that source files are only compiled once
|
|
|
|
if (${CMAKE_VERSION} VERSION_GREATER "2.8.7")
|
|
|
|
add_library (stardict OBJECT
|
|
|
|
${project_common_sources}
|
|
|
|
${project_common_headers})
|
|
|
|
set (project_common_sources $<TARGET_OBJECTS:stardict>)
|
|
|
|
else (${CMAKE_VERSION} VERSION_GREATER "2.8.7")
|
|
|
|
add_library (stardict STATIC
|
|
|
|
${project_common_sources}
|
|
|
|
${project_common_headers})
|
|
|
|
target_link_libraries (stardict ${project_common_libraries})
|
|
|
|
list (APPEND project_common_libraries stardict)
|
|
|
|
set (project_common_sources)
|
|
|
|
endif (${CMAKE_VERSION} VERSION_GREATER "2.8.7")
|
|
|
|
|
|
|
|
# Generate a configuration file
|
2016-03-15 21:56:07 +01:00
|
|
|
configure_file (${PROJECT_SOURCE_DIR}/config.h.in
|
|
|
|
${PROJECT_BINARY_DIR}/config.h)
|
|
|
|
include_directories (${PROJECT_SOURCE_DIR} ${PROJECT_BINARY_DIR})
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Primary target source files
|
|
|
|
set (project_sources
|
2016-03-15 21:56:07 +01:00
|
|
|
src/${PROJECT_NAME}.c)
|
2013-05-17 18:26:08 +02:00
|
|
|
set (project_headers
|
|
|
|
${project_common_headers})
|
|
|
|
|
|
|
|
# Build the main executable and link it
|
2016-03-15 21:56:07 +01:00
|
|
|
add_executable (${PROJECT_NAME}
|
2013-05-17 18:26:08 +02:00
|
|
|
${project_sources} ${project_headers} ${project_common_sources})
|
2016-03-15 21:56:07 +01:00
|
|
|
target_link_libraries (${PROJECT_NAME} ${project_common_libraries})
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Tools
|
2013-10-02 02:17:38 +02:00
|
|
|
add_executable (query-tool EXCLUDE_FROM_ALL
|
|
|
|
src/query-tool.c ${project_common_sources})
|
|
|
|
target_link_libraries (query-tool ${project_common_libraries})
|
|
|
|
|
|
|
|
add_executable (add-pronunciation EXCLUDE_FROM_ALL
|
2013-05-17 18:26:08 +02:00
|
|
|
src/add-pronunciation.c ${project_common_sources})
|
|
|
|
target_link_libraries (add-pronunciation ${project_common_libraries})
|
|
|
|
|
2013-10-02 02:17:38 +02:00
|
|
|
add_custom_target (tools DEPENDS add-pronunciation query-tool)
|
|
|
|
|
2013-05-17 18:26:08 +02:00
|
|
|
# The files to be installed
|
2013-05-19 07:49:47 +02:00
|
|
|
include (GNUInstallDirs)
|
2016-03-15 21:56:07 +01:00
|
|
|
install (TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})
|
2013-05-19 07:49:47 +02:00
|
|
|
install (FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
|
|
|
|
|
|
|
foreach (page ${project_MAN_PAGES_OUTPUT})
|
2016-03-15 21:53:52 +01:00
|
|
|
string (REGEX MATCH "\\.([0-9])$" manpage_suffix "${page}")
|
2013-05-19 07:49:47 +02:00
|
|
|
install (FILES "${page}"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
|
|
|
|
endforeach (page)
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
# Do some unit tests
|
|
|
|
option (BUILD_TESTING "Build tests" OFF)
|
|
|
|
set (project_tests stardict)
|
|
|
|
|
|
|
|
if (BUILD_TESTING)
|
|
|
|
enable_testing ()
|
|
|
|
|
|
|
|
foreach (name ${project_tests})
|
|
|
|
add_executable (test-${name}
|
|
|
|
src/test-${name}.c ${project_common_sources})
|
|
|
|
target_link_libraries (test-${name} ${project_common_libraries})
|
|
|
|
add_test (test-${name} test-${name})
|
|
|
|
endforeach (name)
|
|
|
|
endif (BUILD_TESTING)
|
|
|
|
|
|
|
|
# CPack
|
|
|
|
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "StarDict terminal UI")
|
|
|
|
set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
|
|
|
|
set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p.janouch@gmail.com>")
|
2016-03-15 21:56:07 +01:00
|
|
|
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
2013-05-17 18:26:08 +02:00
|
|
|
set (CPACK_PACKAGE_VERSION_MAJOR ${project_VERSION_MAJOR})
|
|
|
|
set (CPACK_PACKAGE_VERSION_MINOR ${project_VERSION_MINOR})
|
|
|
|
set (CPACK_PACKAGE_VERSION_PATCH ${project_VERSION_PATCH})
|
|
|
|
set (CPACK_GENERATOR "TGZ;ZIP")
|
|
|
|
set (CPACK_PACKAGE_FILE_NAME
|
2016-03-15 21:56:07 +01:00
|
|
|
"${PROJECT_NAME}-${project_VERSION}-${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
|
|
|
set (CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME}-${project_VERSION}")
|
2013-05-17 18:26:08 +02:00
|
|
|
set (CPACK_SOURCE_GENERATOR "TGZ;ZIP")
|
|
|
|
set (CPACK_SOURCE_IGNORE_FILES "/\\\\.git;/build;/CMakeLists.txt.user")
|
2016-03-15 21:56:07 +01:00
|
|
|
set (CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${project_VERSION}")
|
2013-05-17 18:26:08 +02:00
|
|
|
|
|
|
|
include (CPack)
|
|
|
|
|