cmake_minimum_required(VERSION 3.20)
project(noisegate_c4d_renderer LANGUAGES CXX)

message(STATUS "Noisegate Cinema 4D renderer source tree")
message(STATUS "Build this inside the official Cinema 4D C++ SDK project/tooling.")
message(STATUS "The SDK is not vendored in this repo, so this CMake file is only a source entry point.")

add_library(noisegate_renderer_sources INTERFACE)
target_sources(noisegate_renderer_sources INTERFACE
  source/main.cpp
  source/noisegate_history.cpp
  source/noisegate_videopost.cpp
)
target_include_directories(noisegate_renderer_sources INTERFACE
  ${CMAKE_CURRENT_SOURCE_DIR}/source
  ${CMAKE_CURRENT_SOURCE_DIR}/res/description
)

