cmake: No need to set CMP0048/CMP0054

Now that the minimum is 3.14.0 setting these policies is redundant
This commit is contained in:
Juan Ramos 2023-03-15 17:18:08 -06:00 committed by Jeremy Hayes
parent 43978b7c96
commit ef77cf3a92

View File

@ -31,13 +31,6 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
cmake_minimum_required(VERSION 3.14.0)
if (POLICY CMP0048)
cmake_policy(SET CMP0048 NEW)
endif()
if(POLICY CMP0054)
cmake_policy(SET CMP0054 NEW)
endif()
project(glslang)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)