mirror of https://github.com/procxx/kepka.git
Private header temporary added. Qt and GTK requirements added. CMake required version reduced.
This commit is contained in:
parent
1783290f31
commit
a653fd0f44
|
@ -17,6 +17,9 @@ find_package(OpenSSL REQUIRED)
|
|||
find_package(LibLZMA REQUIRED)
|
||||
find_package(GTK3 3.0 REQUIRED gtk)
|
||||
|
||||
include_directories(${GTK3_INCLUDE_DIRS})
|
||||
link_directories(${GTK3_LIBRARY_DIRS})
|
||||
|
||||
#find_package(PortAudio REQUIRED)
|
||||
#find_package(Opus REQUIRED)
|
||||
#find_package(FFmpeg REQUIRED)
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
find_package(Qt5Core 5.6 REQUIRED)
|
||||
find_package(Qt5Gui 5.6 REQUIRED)
|
||||
find_package(Qt5Widgets 5.6 REQUIRED)
|
||||
find_package(Qt5 5.6 COMPONENTS Core Gui Widgets REQUIRED)
|
||||
|
||||
include_directories(${Qt5Core_INCLUDE_DIRS} ${Qt5Gui_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS})
|
||||
|
||||
|
||||
# defines
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
|
|
Loading…
Reference in New Issue