mirror of
https://github.com/bkaradzic/bgfx.cmake.git
synced 2026-02-17 21:12:35 +01:00
The old email is no longer a reliable way to contact me. Sorry if you've tried! Use the new email.
48 lines
1.7 KiB
CMake
48 lines
1.7 KiB
CMake
# bgfx.cmake - bgfx building in cmake
|
|
# Written in 2017 by Joshua Brookover <joshua.al.brookover@gmail.com>
|
|
|
|
# To the extent possible under law, the author(s) have dedicated all copyright
|
|
# and related and neighboring rights to this software to the public domain
|
|
# worldwide. This software is distributed without any warranty.
|
|
|
|
# You should have received a copy of the CC0 Public Domain Dedication along with
|
|
# this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
# The ovr location is customizable via cache variable BGFX_OVR_DIR
|
|
if( NOT BGFX_OVR_DIR )
|
|
set( BGFX_OVR_DIR "${CMAKE_CURRENT_SOURCE_DIR}/LibOVR" CACHE STRING "Location of LibOVR." )
|
|
endif()
|
|
|
|
# Ensure the directory exists
|
|
if( NOT IS_DIRECTORY ${BGFX_OVR_DIR} )
|
|
message( SEND_ERROR "Could not load LibOVR, directory does not exist. ${BGFX_OVR_DIR}" )
|
|
return()
|
|
endif()
|
|
|
|
# Create the ovr target
|
|
add_library( ovr INTERFACE )
|
|
|
|
# Add include directory of ovr
|
|
target_include_directories( ovr INTERFACE ${BGFX_OVR_DIR}/Include )
|
|
|
|
# Add bgfx configuration define
|
|
target_compile_definitions( ovr INTERFACE "BGFX_CONFIG_USE_OVR=1" )
|
|
|
|
# Build system specific configurations
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
|
set( ARCH "x64" )
|
|
else()
|
|
set( ARCH "Win32" )
|
|
endif()
|
|
if( MSVC10 )
|
|
target_link_libraries( ovr INTERFACE ${BGFX_OVR_DIR}/Lib/Windows/${ARCH}/Release/VS2010/LibOVR.lib )
|
|
elseif( MSVC11 )
|
|
target_link_libraries( ovr INTERFACE ${BGFX_OVR_DIR}/Lib/Windows/${ARCH}/Release/VS2012/LibOVR.lib )
|
|
elseif( MSVC12 )
|
|
target_link_libraries( ovr INTERFACE ${BGFX_OVR_DIR}/Lib/Windows/${ARCH}/Release/VS2013/LibOVR.lib )
|
|
elseif( MSVC14 )
|
|
target_link_libraries( ovr INTERFACE ${BGFX_OVR_DIR}/Lib/Windows/${ARCH}/Release/VS2015/LibOVR.lib )
|
|
else()
|
|
message( STATUS "OVR not supported on this platform." )
|
|
endif()
|