Files
ortools-clone/examples/java/CMakeLists.txt

9 lines
155 B
CMake
Raw Normal View History

if(NOT BUILD_JAVA_EXAMPLES)
return()
endif()
2020-09-17 18:02:02 +02:00
file(GLOB JAVA_SRCS "*.java")
foreach(SAMPLE IN LISTS JAVA_SRCS)
add_java_example(${SAMPLE})
endforeach()