Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More cmake fixes #2400

Merged
merged 10 commits into from
Jan 24, 2021
Next Next commit
CMake: Guard Policy check
  • Loading branch information
Ghabry committed Jan 14, 2021
commit 9a6f7f8906def50a83b88418bf88ff9259162f50
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
cmake_minimum_required(VERSION 3.7)
cmake_policy(SET CMP0091 NEW) # Support MSVC_RUNTIME_LIBRARY

if(POLICY CMP0091)
cmake_policy(SET CMP0091 NEW) # Support MSVC_RUNTIME_LIBRARY
endif()

project(EasyRPG_Player VERSION 0.6.2 LANGUAGES CXX)

Expand Down