Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Remove unnecessary enabling of target property: MACOSX_RPATH
According to CMake's documentation, MACOSX_RPATH is on already: https://cmake.org/cmake/help/latest/policy/CMP0042.html Specifically: CMake 3.0 and later prefer this property to be ON by default. [This policy] may be set by cmake_policy() or cmake_minimum_required(). If it is not set, CMake warns, and uses OLD behavior. Well, the top-level 'CMakeLists.txt' already sets the minimum version: cmake_minimum_required(VERSION 3.7) Therefore, it is unnecessary to enable it explicitly.
- Loading branch information