#
# Copyright (C) 2022  Autodesk, Inc. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#

INCLUDE(cxx_defaults)

SET(_target
    "TwkContainer"
)

SET(_sources
    ImageProperty.cpp
    Property.cpp
    Properties.cpp
    Component.cpp
    GTOWriter.cpp
    GTOReader.cpp
    PropertyContainer.cpp
    DefaultValues.cpp
)

ADD_LIBRARY(
  ${_target} STATIC
  ${_sources}
)

TARGET_INCLUDE_DIRECTORIES(
  ${_target}
  PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
)

TARGET_LINK_LIBRARIES(
  ${_target}
  PUBLIC TwkMath Gto
  PRIVATE Boost::headers stl_ext
)

RV_STAGE(TYPE "LIBRARY" TARGET ${_target})
