cmake: Enable pdlp python samples

This commit is contained in:
Corentin Le Molgat
2023-01-23 10:50:06 +01:00
parent 753baa892b
commit 873d832042

View File

@@ -21,3 +21,10 @@ if(BUILD_CXX_SAMPLES)
add_cxx_sample(${SAMPLE})
endforeach()
endif()
if(BUILD_PYTHON_SAMPLES)
file(GLOB PYTHON_SRCS "*.py")
foreach(SAMPLE IN LISTS PYTHON_SRCS)
add_python_sample(${SAMPLE})
endforeach()
endif()