Skip to content
Extraits de code Groupes Projets
Vérifiée Valider a1e3719b rédigé par Kubat's avatar Kubat
Parcourir les fichiers

CMAKE: Fix cmake file

- Correct minimal version
- Correct message status
parent 3bf08679
Aucune branche associée trouvée
Aucune étiquette associée trouvée
1 requête de fusion!26MPV: Fix the MPV controls
Pipeline #2504 réussi
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.17)
# Alpho Vivy, CXX only
project(Vivy VERSION 0.1 LANGUAGES CXX)
......@@ -7,16 +7,16 @@ cmake_policy(SET CMP0009 NEW) # Do not follow symlinks with GLOB_RECURSE
# Don't forget for specific things
if(WIN32)
message("You are building on windows, pay attenion to the dependencies")
message(STATUS "You are building on windows, pay attenion to the dependencies")
endif()
if(MSVC OR MSYS OR MINGW)
message("You are building with a windows compiler")
message(STATUS "You are building with a windows compiler")
endif()
if(APPLE)
message("You are building on MacOS X")
message(STATUS "You are building on MacOS X")
endif()
if(UNIX AND NOT APPLE)
message("You are building on Linux, FreeBSD or any other toaster OS")
message(STATUS "You are building on Linux, FreeBSD or any other toaster OS")
endif()
# Pass -fPIC
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter