Move detection to parent cmake file

This commit is contained in:
Berkus Decker 2017-12-04 02:03:14 +02:00 committed by Berkus Decker
parent fb783cfd64
commit 44eb8751e0
2 changed files with 8 additions and 9 deletions

View File

@ -30,6 +30,7 @@ find_package(OpenSSL REQUIRED)
find_package(FFmpeg REQUIRED)
find_package(ZLIB REQUIRED)
find_package(Opus REQUIRED)
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
if (NOT SWSCALE_FOUND)
message(FATAL_ERROR "FFmpeg swscale is required")
@ -38,4 +39,11 @@ if (NOT SWRESAMPLE_FOUND)
message(FATAL_ERROR "FFmpeg swresample is required")
endif()
find_program(CCACHE ccache)
if (CCACHE)
message(STATUS "Enabling ccache")
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
endif()
add_subdirectory(Telegram)

View File

@ -1,5 +1,3 @@
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
# defines
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
@ -9,13 +7,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
endif()
endif()
find_program(CCACHE ccache)
if (CCACHE)
message(STATUS "Enabling ccache")
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
endif()
##======================
## Codegen Tools
##======================