mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-12-02 02:05:41 +00:00
Re-shuffle blocks of cmake code.
They should be grouped in a better way like this.
This commit is contained in:
parent
758cf4d9a0
commit
11110c0428
1 changed files with 16 additions and 14 deletions
|
@ -34,30 +34,31 @@ include(shared_git_project)
|
||||||
include(TargetArch)
|
include(TargetArch)
|
||||||
include(CMakeDependentOption)
|
include(CMakeDependentOption)
|
||||||
|
|
||||||
|
find_package(Boost 1.53.0 REQUIRED COMPONENTS program_options filesystem system)
|
||||||
|
find_package(PostgreSQL 8.3 REQUIRED)
|
||||||
|
find_package(YamlCpp 0.5.1 REQUIRED)
|
||||||
|
find_package(Qt5Qml 5.1 REQUIRED)
|
||||||
|
|
||||||
target_architecture(DINDEXER_ARCH)
|
target_architecture(DINDEXER_ARCH)
|
||||||
if (DINDEXER_ARCH MATCHES "arm.*")
|
if (DINDEXER_ARCH MATCHES "arm.*")
|
||||||
set(is_arm ON)
|
set(is_arm ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION_MAJOR EQUAL "5")
|
||||||
|
set(compiler_is_gnuxx_5plus ON)
|
||||||
|
endif()
|
||||||
|
|
||||||
cmake_dependent_option(DINDEXER_NATIVE_RELEASE "Pass the -march=native flag to the compiler for release builds" OFF "NOT is_arm" OFF)
|
cmake_dependent_option(DINDEXER_NATIVE_RELEASE "Pass the -march=native flag to the compiler for release builds" OFF "NOT is_arm" OFF)
|
||||||
|
option(DINDEXER_DEBUG_CFG_FILE "Enable to set the config file path to the build path" OFF)
|
||||||
|
option(DINDEXER_WITH_MEDIA_AUTODETECT "Enable code that tries to autodetect the media type and sets --type automatically" ON)
|
||||||
|
cmake_dependent_option(DINDEXER_WITH_DESKTOP_QT5_GUI "Enable the Qt5 GUI for desktop" ON "Qt5Qml_FOUND" OFF)
|
||||||
|
cmake_dependent_option(DINDEXER_CXX11_ABI "Controls if _GLIBCXX_USE_CXX11_ABI gets set to 0 or not" ON "compiler_is_gnuxx_5plus" OFF)
|
||||||
|
|
||||||
if(DINDEXER_NATIVE_RELEASE)
|
if(DINDEXER_NATIVE_RELEASE)
|
||||||
set(march_flag "-march=native")
|
set(march_flag "-march=native")
|
||||||
else()
|
else()
|
||||||
set(march_flag "")
|
set(march_flag "")
|
||||||
endif()
|
endif()
|
||||||
if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION_MAJOR EQUAL "5")
|
|
||||||
set(compiler_is_gnuxx_5plus ON)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(Boost 1.53.0 REQUIRED COMPONENTS program_options filesystem system)
|
|
||||||
find_package(PostgreSQL 8.3 REQUIRED)
|
|
||||||
find_package(YamlCpp 0.5.1 REQUIRED)
|
|
||||||
import_libpqtypes_project("${PostgreSQL_INCLUDE_DIRS}" "-O3 ${march_flag}")
|
|
||||||
find_package(Qt5Qml 5.1 REQUIRED)
|
|
||||||
|
|
||||||
option(DINDEXER_DEBUG_CFG_FILE "Enable to set the config file path to the build path" OFF)
|
|
||||||
option(DINDEXER_WITH_MEDIA_AUTODETECT "Enable code that tries to autodetect the media type and sets --type automatically" ON)
|
|
||||||
cmake_dependent_option(DINDEXER_WITH_DESKTOP_QT5_GUI "Enable the Qt5 GUI for desktop" ON "Qt5Qml_FOUND" OFF)
|
|
||||||
cmake_dependent_option(DINDEXER_CXX11_ABI "Controls if _GLIBCXX_USE_CXX11_ABI gets set to 0 or not" ON "compiler_is_gnuxx_5plus" OFF)
|
|
||||||
|
|
||||||
set(DINDEXER_COPYRIGHT_YEARS "2015,2016")
|
set(DINDEXER_COPYRIGHT_YEARS "2015,2016")
|
||||||
set(DINDEXER_ACTIONS_PATH "${CMAKE_CURRENT_BINARY_DIR}/src" CACHE STRING "Actions search path")
|
set(DINDEXER_ACTIONS_PATH "${CMAKE_CURRENT_BINARY_DIR}/src" CACHE STRING "Actions search path")
|
||||||
|
@ -150,6 +151,7 @@ unset(redis_found_index)
|
||||||
unset(backend_list)
|
unset(backend_list)
|
||||||
|
|
||||||
#Libraries
|
#Libraries
|
||||||
|
import_libpqtypes_project("${PostgreSQL_INCLUDE_DIRS}" "-O3 ${march_flag}")
|
||||||
add_subdirectory(src/pq)
|
add_subdirectory(src/pq)
|
||||||
add_subdirectory(src/common)
|
add_subdirectory(src/common)
|
||||||
add_subdirectory(src/machinery)
|
add_subdirectory(src/machinery)
|
||||||
|
|
Loading…
Reference in a new issue