-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto stash before merge of "master" and "origin/master"
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include(filament.cmake) | ||
if(COMMAND cmake_policy) | ||
cmake_policy(SET CMP0003 NEW) | ||
endif(COMMAND cmake_policy) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# https://github.com/google/filament.git | ||
#SET(ENABLE_PCH OFF CACHE BOOL "ENABLE_PCH") | ||
SET_PROPERTY(GLOBAL PROPERTY SKIP_PRECOMPILE_HEADERS ON) | ||
SET_PROPERTY(GLOBAL PROPERTY DISABLE_PRECOMPILE_HEADERS ON) | ||
CPMAddPackage(GITHUB_REPOSITORY google/filament | ||
GIT_TAG v1.29.0 | ||
OPTIONS "ENABLE_PCH OFF" "ENABLE_OPT OFF" | ||
) | ||
find_package(filament REQUIRED) | ||
IF(filament_ADDED) | ||
MESSAGE(STATUS filament_ADDED) | ||
ENDIF() |