mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 09:39:43 +01:00
Move PROJECT line after CMAKE_OSX_DEPLOYMENT_TARGET line
This is suggested by the documentation: https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_DEPLOYMENT_TARGET.html
This commit is contained in:
parent
1a6ce2617a
commit
d6392ccbe3
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,6 @@
|
|||
# Written by Ethan "flibitijibibo" Lee
|
||||
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12)
|
||||
PROJECT(VVVVVV)
|
||||
|
||||
# Architecture Flags
|
||||
IF(APPLE)
|
||||
|
@ -20,6 +19,8 @@ IF(APPLE)
|
|||
ADD_COMPILE_OPTIONS(-Werror=partial-availability)
|
||||
ENDIF()
|
||||
|
||||
PROJECT(VVVVVV)
|
||||
|
||||
# Compiler Flags
|
||||
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_DEFAULT=0 -DPHYSFS_SUPPORTS_ZIP=1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue