CMake: Add dummy CMakeLists.txt in samples

This commit is contained in:
Corentin Le Molgat
2020-03-02 11:36:57 +01:00
parent d7b67ee2eb
commit 99516e690e
6 changed files with 6 additions and 0 deletions

View File

@@ -170,3 +170,9 @@ include(cpp)
include(python)
include(java)
include(dotnet)
# Since samples mix all languages we must parse them once we have included all
# <language>.cmake files
foreach(SAMPLES IN ITEMS algorithms graph linear_solver constraint_solver sat)
add_subdirectory(ortools/${SAMPLES}/samples)
endforeach()

View File

View File