CMake: Specify languages

This commit is contained in:
Jonas Kvinge 2024-10-06 01:10:28 +02:00
parent 1720ddc808
commit c58207dd2f
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
cmake_minimum_required(VERSION 3.13)
project(strawberry)
project(strawberry C CXX)
if(APPLE)
enable_language(OBJC OBJCXX)
endif()
if(POLICY CMP0054)
cmake_policy(SET CMP0054 NEW)