17 lines
387 B
CMake
17 lines
387 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-*,-modernize-use-trailing-return-type
|
|
)
|
|
|
|
project(JAMCS)
|
|
|
|
# Find gtk+-4.0 library
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(GTK REQUIRED gtkmm-3.0)
|
|
|
|
add_subdirectory(src)
|