Files
data-collection-terminal/opcua-expoter/fault-simulation-algorithm/temperature-drift/CMakeLists.txt
2024-08-28 09:26:25 +08:00

24 lines
398 B
CMake

add_library(
temperature-drift
INTERFACE
)
target_sources(
temperature-drift
INTERFACE
temperature_drift.cpp
temperature_drift.h
)
target_include_directories(
temperature-drift
INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}
)
target_link_libraries(
temperature-drift
INTERFACE
nlohmann_json::nlohmann_json
)