| 123456789101112131415161718192021222324252627282930313233 |
- project(get-graphics-offsets)
- add_executable(get-graphics-offsets)
- target_sources(
- get-graphics-offsets
- PRIVATE get-graphics-offsets.c
- get-graphics-offsets.h
- dxgi-offsets.cpp
- d3d8-offsets.cpp
- d3d9-offsets.cpp
- ../graphics-hook-info.h
- ../hook-helpers.h)
- target_include_directories(get-graphics-offsets PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..
- ${CMAKE_CURRENT_SOURCE_DIR}/../d3d8-api)
- target_link_libraries(get-graphics-offsets d3d9.lib dxgi.lib d3d11.lib)
- target_compile_definitions(get-graphics-offsets PRIVATE OBS_LEGACY)
- if(MSVC)
- target_compile_options(get-graphics-offsets PRIVATE "$<IF:$<CONFIG:Debug>,/MTd,/MT>")
- endif()
- set_target_properties(get-graphics-offsets PROPERTIES FOLDER "plugins/win-capture")
- set_target_properties(get-graphics-offsets
- PROPERTIES OUTPUT_NAME "get-graphics-offsets$<IF:$<EQUAL:${CMAKE_SIZEOF_VOID_P},8>,64,32>")
- set(OBS_PLUGIN_DESTINATION "${OBS_DATA_DESTINATION}/obs-plugins/win-capture/")
- setup_plugin_target(get-graphics-offsets)
- add_dependencies(win-capture get-graphics-offsets)
|