Files
renderdoc/renderdoc/CMakeLists.txt
T
baldurk 1992183e8e Add support for specifying a subfolder under the lib/ target. Refs #750
* This allows a buidler to customise from e.g. /usr/lib/librenderdoc.so
  to /usr/lib/renderdoc/librenderdoc.so - which is harmless since the
  library is 'private' and not intended to be linked against directly.
2017-09-26 11:00:17 +01:00

331 lines
10 KiB
CMake

set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(RDOC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(RDOC_DEFINITIONS PRIVATE -DRENDERDOC_EXPORTS)
set(RDOC_INCLUDES
PRIVATE ${RDOC_SOURCE_DIR}
PRIVATE ${RDOC_SOURCE_DIR}/3rdparty)
set(RDOC_LIBRARIES)
if(ANDROID)
list(APPEND RDOC_LIBRARIES
PRIVATE m
PRIVATE dl
PRIVATE log
PRIVATE android
PRIVATE ${CMAKE_THREAD_LIBS_INIT})
elseif(APPLE)
list(APPEND RDOC_LIBRARIES
PRIVATE m
PRIVATE dl
PRIVATE ${CMAKE_THREAD_LIBS_INIT})
elseif(UNIX)
find_package(PkgConfig REQUIRED)
find_package(Threads REQUIRED)
list(APPEND RDOC_LIBRARIES
PRIVATE m
PRIVATE dl
PRIVATE ${CMAKE_THREAD_LIBS_INIT})
if(ENABLE_XLIB)
find_package(X11 REQUIRED)
list(APPEND RDOC_INCLUDES
PRIVATE ${X11_X11_INCLUDE_PATH})
list(APPEND RDOC_LIBRARIES
PRIVATE ${X11_X11_LIB})
endif()
if(ENABLE_XCB)
# This should be fixed and moved to FindXCB.cmake
pkg_check_modules(PC_XCB REQUIRED xcb xcb-keysyms)
set(XCB_INCLUDE_DIRS)
set(XCB_LIBRARIES xcb xcb-keysyms)
list(APPEND RDOC_INCLUDES
PRIVATE ${XCB_INCLUDE_DIRS})
list(APPEND RDOC_LIBRARIES
PRIVATE ${XCB_LIBRARIES})
endif()
endif()
set(sources
api/app/renderdoc_app.h
api/replay/basic_types.h
api/replay/capture_options.h
api/replay/control_types.h
api/replay/d3d11_pipestate.h
api/replay/data_types.h
api/replay/gl_pipestate.h
api/replay/renderdoc_replay.h
api/replay/replay_enums.h
api/replay/shader_types.h
api/replay/vk_pipestate.h
api/replay/version.h
common/common.cpp
common/common.h
common/custom_assert.h
common/dds_readwrite.cpp
common/dds_readwrite.h
common/globalconfig.h
common/shader_cache.h
common/threading.h
common/timing.h
common/wrapped_pool.h
core/core.cpp
core/image_viewer.cpp
core/core.h
core/crash_handler.h
core/target_control.cpp
core/remote_server.cpp
core/replay_proxy.cpp
core/replay_proxy.h
core/android.cpp
core/android.h
core/plugins.cpp
core/plugins.h
core/resource_manager.cpp
core/resource_manager.h
core/socket_helpers.h
data/hlsl/debugcbuffers.h
data/glsl/debuguniforms.h
data/glsl/vk_texsample.h
data/glsl/gl_texsample.h
data/glsl/gles_texsample.h
data/glsl_shaders.cpp
data/glsl_shaders.h
hooks/hooks.cpp
hooks/hooks.h
maths/camera.cpp
maths/camera.h
maths/formatpacking.h
maths/half_convert.h
maths/matrix.cpp
maths/matrix.h
maths/quat.h
maths/vec.h
os/os_specific.cpp
os/os_specific.h
replay/app_api.cpp
replay/capture_options.cpp
replay/capture_file.cpp
replay/entry_points.cpp
replay/replay_driver.cpp
replay/replay_driver.h
replay/replay_output.cpp
replay/replay_controller.cpp
replay/replay_controller.h
replay/type_helpers.cpp
replay/type_helpers.h
serialise/grisu2.cpp
serialise/serialiser.cpp
serialise/serialiser.h
serialise/string_utils.cpp
serialise/string_utils.h
serialise/utf8printf.cpp
3rdparty/jpeg-compressor/jpgd.cpp
3rdparty/jpeg-compressor/jpgd.h
3rdparty/jpeg-compressor/jpge.cpp
3rdparty/jpeg-compressor/jpge.h
3rdparty/catch/catch.cpp
3rdparty/catch/catch.hpp
3rdparty/lz4/lz4.c
3rdparty/lz4/lz4.h
3rdparty/stb/stb_image.h
3rdparty/stb/stb_image_write.h
3rdparty/stb/stb_image_resize.h
3rdparty/stb/stb_impl.c
3rdparty/stb/stb_truetype.h
3rdparty/tinyexr/tinyexr.cpp
3rdparty/tinyexr/tinyexr.h
3rdparty/tinyfiledialogs/tinyfiledialogs.c
3rdparty/tinyfiledialogs/tinyfiledialogs.h)
if(ANDROID)
list(APPEND sources
data/embedded_files.h
os/posix/android/android_stringio.cpp
os/posix/android/android_callstack.cpp
os/posix/android/android_process.cpp
os/posix/android/android_threading.cpp
os/posix/android/android_hook.cpp
os/posix/posix_hook.h
os/posix/posix_network.cpp
os/posix/posix_process.cpp
os/posix/posix_stringio.cpp
os/posix/posix_threading.cpp
os/posix/posix_specific.h)
# posix_libentry must be the last so that library_loaded is called after
# static objects are constructed.
list(APPEND sources os/posix/posix_libentry.cpp)
elseif(APPLE)
list(APPEND sources
data/embedded_files.h
os/posix/apple/apple_stringio.cpp
os/posix/apple/apple_callstack.cpp
os/posix/apple/apple_process.cpp
os/posix/apple/apple_threading.cpp
os/posix/apple/apple_hook.cpp
os/posix/posix_hook.h
os/posix/posix_network.cpp
os/posix/posix_process.cpp
os/posix/posix_stringio.cpp
os/posix/posix_threading.cpp
os/posix/posix_specific.h)
# posix_libentry must be the last so that library_loaded is called after
# static objects are constructed.
list(APPEND sources os/posix/posix_libentry.cpp)
elseif(UNIX)
list(APPEND sources
data/embedded_files.h
os/posix/linux/linux_stringio.cpp
os/posix/linux/linux_callstack.cpp
os/posix/linux/linux_process.cpp
os/posix/linux/linux_threading.cpp
os/posix/linux/linux_hook.cpp
3rdparty/plthook/plthook.h
3rdparty/plthook/plthook_elf.c
os/posix/posix_hook.h
os/posix/posix_network.cpp
os/posix/posix_process.cpp
os/posix/posix_stringio.cpp
os/posix/posix_threading.cpp
os/posix/posix_specific.h)
# posix_libentry must be the last so that library_loaded is called after
# static objects are constructed.
list(APPEND sources os/posix/posix_libentry.cpp)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR APPLE)
set_source_files_properties(3rdparty/tinyexr/tinyexr.cpp
PROPERTIES COMPILE_FLAGS "-Wno-extra -Wno-unused-function")
# Need to add -Wno-unknown-warning-option since some clang versions don't have
# -Wno-shift-negative-value available
set_source_files_properties(3rdparty/jpeg-compressor/jpgd.cpp
PROPERTIES COMPILE_FLAGS "-Wno-unknown-warning-option -Wno-shift-negative-value")
if(CMAKE_COMPILER_IS_GNUCXX)
set_property(SOURCE 3rdparty/jpeg-compressor/jpgd.cpp
APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-unknown-warning -Wno-implicit-fallthrough")
endif()
endif()
add_library(rdoc OBJECT ${sources})
target_compile_definitions(rdoc ${RDOC_DEFINITIONS})
target_include_directories(rdoc ${RDOC_INCLUDES})
set(data
data/glsl/blit.vert
data/glsl/checkerboard.frag
data/glsl/debuguniforms.h
data/glsl/fixedcol.frag
data/glsl/histogram.comp
data/glsl/mesh.comp
data/glsl/mesh.frag
data/glsl/mesh.geom
data/glsl/mesh.vert
data/glsl/minmaxresult.comp
data/glsl/minmaxtile.comp
data/glsl/outline.frag
data/glsl/quadresolve.frag
data/glsl/quadwrite.frag
data/glsl/texdisplay.frag
data/glsl/gl_texsample.h
data/glsl/gles_texsample.h
data/glsl/vk_texsample.h
data/glsl/text.frag
data/glsl/text.vert
data/glsl/array2ms.comp
data/glsl/ms2array.comp
data/glsl/trisize.frag
data/glsl/trisize.geom
data/glsl/deptharr2ms.frag
data/glsl/depthms2arr.frag
data/sourcecodepro.ttf
driver/vulkan/renderdoc.json)
set(data_objects)
if(UNIX)
# If we're cross-compiling, include-bin will get built for the target and we
# then can't execute it. Instead, we force calling c++ (which we can safely
# assume is present) directly to build the binary
if(CMAKE_CROSSCOMPILING)
set(HOST_NATIVE_CPP_COMPILER c++ CACHE STRING "Command to run to compile a .cpp into an executable. Default is just c++")
add_custom_command(OUTPUT ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/include-bin
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND ${HOST_NATIVE_CPP_COMPILER} 3rdparty/include-bin/main.cpp -o ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/include-bin
DEPENDS 3rdparty/include-bin/main.cpp)
else()
add_executable(include-bin 3rdparty/include-bin/main.cpp)
endif()
foreach(res ${data})
set(in ${res})
set(working_dir ${CMAKE_CURRENT_SOURCE_DIR})
set(out_src ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_FILES_DIRECTORY}/data.src/${in}.c)
get_filename_component(out_src_dir ${out_src} DIRECTORY)
add_custom_command(OUTPUT ${out_src}
WORKING_DIRECTORY ${working_dir}
COMMAND ${CMAKE_COMMAND} -E make_directory ${out_src_dir}
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/include-bin ${in} ${out_src}
DEPENDS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/include-bin
DEPENDS ${res})
list(APPEND data_objects ${out_src})
endforeach()
endif()
set(renderdoc_objects)
if(ENABLE_GL OR ENABLE_GLES)
add_subdirectory(driver/gl)
list(APPEND renderdoc_objects $<TARGET_OBJECTS:rdoc_gl>)
endif()
if(ENABLE_VULKAN)
add_subdirectory(driver/vulkan)
list(APPEND renderdoc_objects $<TARGET_OBJECTS:rdoc_vulkan>)
endif()
if(ENABLE_GL OR ENABLE_GLES OR ENABLE_VULKAN)
add_subdirectory(driver/shaders/spirv)
list(APPEND renderdoc_objects $<TARGET_OBJECTS:rdoc_spirv>)
add_subdirectory(driver/ihv/amd)
list(APPEND renderdoc_objects $<TARGET_OBJECTS:rdoc_amd>)
endif()
# rdoc must be after its drivers because of linux_libentry.cpp
list(APPEND renderdoc_objects
$<TARGET_OBJECTS:rdoc>
${data_objects})
add_library(renderdoc SHARED ${renderdoc_objects})
target_compile_definitions(renderdoc ${RDOC_DEFINITIONS})
target_include_directories(renderdoc ${RDOC_INCLUDES})
target_link_libraries(renderdoc ${RDOC_LIBRARIES})
if(UNIX AND NOT ANDROID AND NOT APPLE)
set_target_properties(renderdoc PROPERTIES LINK_FLAGS "-Wl,--version-script,${CMAKE_CURRENT_SOURCE_DIR}/renderdoc.version")
endif()
if(ANDROID)
set_target_properties(renderdoc PROPERTIES LINK_FLAGS "-Wl,--build-id")
# rename output library
set_target_properties(renderdoc PROPERTIES OUTPUT_NAME "VkLayer_GLES_RenderDoc")
endif()
install (TARGETS renderdoc DESTINATION lib${LIB_SUFFIX}/${LIB_SUBFOLDER})
# Copy in application API header to include
install (FILES api/app/renderdoc_app.h DESTINATION include RENAME renderdoc.h)