A couple more DX / OpenCL changes for AMD

This commit is contained in:
David G. Yu 2015-04-30 02:25:04 -07:00 committed by David G Yu
parent 0d0f6210ac
commit 421e60f8c5
3 changed files with 12 additions and 0 deletions

View File

@ -355,6 +355,10 @@ if (OPENGL_FOUND AND NOT IOS)
endif()
endif()
if (WIN32 AND NOT NO_DX)
find_package(DXSDK)
endif()
if (NOT NO_MAYA)
find_package(Maya 201200)
endif()

View File

@ -41,6 +41,10 @@ include_directories(
"${PTEX_INCLUDE_DIR}"
)
if (OPENCL_FOUND)
include_directories("${OPENCL_INCLUDE_DIRS}")
endif()
set(SOURCE_FILES
dxPtexViewer.cpp
)

View File

@ -39,6 +39,10 @@ include_directories(
"${DXSDK_INCLUDE_DIR}"
)
if (OPENCL_FOUND)
include_directories("${OPENCL_INCLUDE_DIRS}")
endif()
set(SOURCE_FILES
dxViewer.cpp
)