7d4e8433c1
This gets rid of deprecation warnings. Cmake 3.6 has been out for almost 8 years by now, so this requirement should not cause undue trouble to people trying to compile the game.
10 lines
232 B
CMake
10 lines
232 B
CMake
cmake_minimum_required(VERSION 3.6.0)
|
|
include_directories("${PROJECT_SOURCE_DIR}/lib/simd_wrapper")
|
|
if (UNIX OR MINGW)
|
|
add_definitions(-O3)
|
|
endif()
|
|
add_library(graphics_utils STATIC
|
|
mipmap/cpusimd.c
|
|
mipmap/imgresize.c
|
|
)
|