Files
ortools-clone/examples/java/CMakeLists.txt
2020-09-17 18:02:02 +02:00

9 lines
155 B
CMake

if(NOT BUILD_JAVA_EXAMPLES)
return()
endif()
file(GLOB JAVA_SRCS "*.java")
foreach(SAMPLE IN LISTS JAVA_SRCS)
add_java_example(${SAMPLE})
endforeach()