Merge pull request #460 from Krzmbrzl/revamp-cmake

CMake: Fix invalid syntax
This commit is contained in:
Bartosz Taudul 2022-09-03 17:51:09 +02:00 committed by GitHub
commit 3207df8236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,13 @@ cmake_minimum_required(VERSION 3.10)
project(Tracy LANGUAGES CXX)
option(TRACY_STATIC "Whether to build Tracy as a static library" NOT ${BUILD_SHARED_LIBS})
if(${BUILD_SHARED_LIBS})
set(DEFAULT_STATIC OFF)
else()
set(DEFAULT_STATIC ON)
endif()
option(TRACY_STATIC "Whether to build Tracy as a static library" ${DEFAULT_STATIC})
find_package(Threads REQUIRED)