13 lines
341 B
CMake
13 lines
341 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_CLANG_TIDY clang-tidy -checks=-*,bugprone-*,concurrency-*,cppcoreguidelines-*,modernize-*,performance-*,readability-*,)
|
|
|
|
project(PiCamera)
|
|
|
|
# Find gtk+-4.0 library
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(GTK REQUIRED gtkmm-3.0)
|
|
|
|
add_subdirectory(src)
|