mirror of https://github.com/procxx/kepka.git
Move detection to parent cmake file
This commit is contained in:
parent
fb783cfd64
commit
44eb8751e0
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
##======================
|
||||
|
|
Loading…
Reference in New Issue