mirror of
https://github.com/bkaradzic/bgfx.cmake.git
synced 2026-02-17 21:12:35 +01:00
15 lines
325 B
CMake
15 lines
325 B
CMake
# Copyright (c) 2016 Joshua Brookover
|
|
|
|
cmake_minimum_required( VERSION 3.0 )
|
|
project( bgfx )
|
|
|
|
set_property( GLOBAL PROPERTY USE_FOLDERS ON )
|
|
if( APPLE )
|
|
set( CMAKE_CXX_FLAGS "-ObjC++" )
|
|
endif()
|
|
|
|
include( cmake/bx.cmake )
|
|
include( cmake/bgfx.cmake )
|
|
include( cmake/tools.cmake )
|
|
include( cmake/examples.cmake )
|