free-audio / clap-wrapper

Wrappers for using CLAP in other plugin environments
MIT License
107 stars 17 forks source link

CMAKE_OSX_DEPLOYMENT_TARGET CMake Error #270

Closed djowel closed 2 months ago

djowel commented 2 months ago

What is the issue with this?

CMake Error at external/clap-wrapper/cmake/shared_prologue.cmake:22 (if): if given arguments:

"VERSION_GREATER_EQUAL" "10.15"

Unknown arguments specified

The shared_prologue.cmake:22 code is:

    if (${CMAKE_OSX_DEPLOYMENT_TARGET} VERSION_GREATER_EQUAL "10.15")

Shouldn't it be

    if (CMAKE_OSX_DEPLOYMENT_TARGET VERSION_GREATER_EQUAL "10.15")

??

djowel commented 2 months ago

Sorry, my mistake. Please ignore.