Common: Add helper classes for D3D11

This commit is contained in:
Connor McLaughlin
2019-11-04 00:39:25 +10:00
parent d68f7085d6
commit f244da86a2
11 changed files with 768 additions and 23 deletions

View File

@ -1,28 +1,40 @@
set(SRCS
audio_stream.cpp
audio_stream.h
bitfield.h
cd_image.cpp
cd_image.h
cd_image_bin.cpp
cd_image_cue.cpp
cd_xa.cpp
cd_xa.h
gl/program.cpp
gl/program.h
gl/stream_buffer.cpp
gl/stream_buffer.h
gl/texture.cpp
gl/texture.h
jit_code_buffer.cpp
jit_code_buffer.h
state_wrapper.cpp
state_wrapper.h
add_library(common
audio_stream.cpp
audio_stream.h
bitfield.h
cd_image.cpp
cd_image.h
cd_image_bin.cpp
cd_image_cue.cpp
cd_xa.cpp
cd_xa.h
gl/program.cpp
gl/program.h
gl/stream_buffer.cpp
gl/stream_buffer.h
gl/texture.cpp
gl/texture.h
jit_code_buffer.cpp
jit_code_buffer.h
state_wrapper.cpp
state_wrapper.h
types.h
)
add_library(common ${SRCS})
target_include_directories(common PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/..")
target_include_directories(common PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..")
target_link_libraries(common YBaseLib glad libcue Threads::Threads)
target_link_libraries(common PRIVATE YBaseLib glad libcue Threads::Threads)
if(WIN32)
target_sources(common PRIVATE
d3d11/shader_compiler.cpp
d3d11/shader_compiler.h
d3d11/staging_texture.cpp
d3d11/staging_texture.h
d3d11/stream_buffer.cpp
d3d11/stream_buffer.h
d3d11/texture.cpp
d3d11/texture.h
)
target_link_libraries(common PRIVATE d3dcompiler.lib)
endif()