18 lines
441 B
CMake
18 lines
441 B
CMake
# Copyright (c) 2023 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
set(CRAIG_POSE_TEXTURE_OPTIONS
|
|
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
|
FILTER_MIN=nearest
|
|
FILTER_MAG=nearest
|
|
)
|
|
|
|
set(CRAIG_BODY_TEXTURE_OPTIONS
|
|
${CRAIG_POSE_TEXTURE_OPTIONS}
|
|
CROP_START_Y=1361
|
|
)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt")
|
|
include("${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt") |