Files
bgfx.cmake/CMakeLists.txt
Joshua Brookover 8f9fb0006a Basic osx support.
2016-09-05 19:47:55 -05:00

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 )