Files
create/cMake/FreeCAD_Helpers/SetupSwig.cmake
ezzieyguywuf aa7419b203 Move logic out of CMakeLists.txt
This is an initial pass, simply moving the existing logic as-is. Future
PR's will attempt to refactor and improve the cmake stuff.
2019-09-26 18:54:45 +02:00

13 lines
411 B
CMake

macro(SetupSwig)
# -------------------------------- Swig ----------------------------------
find_package(SWIG)
if (NOT SWIG_FOUND)
message("=====================================================\n"
"SWIG not found, will not build SWIG binding for pivy.\n"
"=====================================================\n")
endif(NOT SWIG_FOUND)
endmacro(SetupSwig)