Files
ortools-clone/examples/dotnet/CMakeLists.txt
2020-09-22 19:09:22 +02:00

9 lines
167 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()