Files
ortools-clone/examples/dotnet/CMakeLists.txt
2021-08-23 13:59:18 +02:00

9 lines
168 B
CMake

if(NOT BUILD_DOTNET_EXAMPLES)
return()
endif()
file(GLOB DOTNET_SRCS "*.cs")
foreach(FILE_NAME IN LISTS DOTNET_SRCS)
add_dotnet_example(${FILE_NAME})
endforeach()