Indentation fix [skip ci]
This commit is contained in:
parent
2a09dd36d1
commit
df413a2f5a
1 changed files with 9 additions and 8 deletions
|
|
@ -1,14 +1,15 @@
|
|||
if(WIN32)
|
||||
cmake_minimum_required (VERSION 3.15)
|
||||
cmake_policy(SET CMP0091 NEW)
|
||||
if (WIN32)
|
||||
cmake_minimum_required (VERSION 3.15)
|
||||
cmake_policy(SET CMP0091 NEW)
|
||||
else()
|
||||
cmake_minimum_required (VERSION 3.5)
|
||||
if (POLICY CMP0069)
|
||||
cmake_policy(SET CMP0069 NEW)
|
||||
endif()
|
||||
cmake_minimum_required (VERSION 3.5)
|
||||
if (POLICY CMP0069)
|
||||
cmake_policy(SET CMP0069 NEW)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
project (sfizz VERSION 0.2.0 LANGUAGES CXX C)
|
||||
set(PROJECT_DESCRIPTION "A library to load SFZ description files and use them to render music.")
|
||||
set (PROJECT_DESCRIPTION "A library to load SFZ description files and use them to render music.")
|
||||
|
||||
# External configuration CMake scripts
|
||||
set (CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue