mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-08-10 12:21:42 +00:00
12 lines
393 B
CMake
12 lines
393 B
CMake
cmake_minimum_required(VERSION 3.29)
|
|
project(gpt4all-backend VERSION 0.1 LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 23) # make sure fmt module is compiled with the same C++ version as us
|
|
include(../common/common.cmake)
|
|
|
|
find_package(Qt6 6.8 COMPONENTS Concurrent Core Network REQUIRED)
|
|
|
|
set(FMT_MODULE ON)
|
|
add_subdirectory(../deps "${CMAKE_CURRENT_BINARY_DIR}/common_deps")
|
|
add_subdirectory(src)
|