mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix(cmake): use boost's own cmake config file (#5679)
This commit is contained in:
parent
bbcd8c5eb2
commit
90211cca55
|
@ -1,6 +1,9 @@
|
|||
cmake_minimum_required(VERSION 3.15)
|
||||
cmake_policy(SET CMP0087 NEW) # evaluates generator expressions in `install(CODE/SCRIPT)`
|
||||
cmake_policy(SET CMP0091 NEW) # select MSVC runtime library through `CMAKE_MSVC_RUNTIME_LIBRARY`
|
||||
if (POLICY CMP0167)
|
||||
cmake_policy(SET CMP0167 NEW) # find Boost's own CMake config file
|
||||
endif ()
|
||||
include(FeatureSummary)
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH
|
||||
|
|
Loading…
Reference in a new issue