Duckstation/src/common/CMakeLists.txt

29 lines
635 B
CMake
Raw Normal View History

2019-09-09 07:01:26 +00:00
set(SRCS
2019-10-15 08:02:48 +00:00
audio_stream.cpp
audio_stream.h
2019-09-09 07:01:26 +00:00
bitfield.h
2019-10-15 08:02:48 +00:00
cd_image.cpp
cd_image.h
2019-10-20 12:31:45 +00:00
cd_image_bin.cpp
cd_image_cue.cpp
2019-10-15 08:02:48 +00:00
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
2019-09-09 07:01:26 +00:00
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}/..")
2019-10-20 12:24:57 +00:00
target_link_libraries(common YBaseLib glad libcue Threads::Threads)