We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee357c commit baa5ea9Copy full SHA for baa5ea9
cmake/carmaDependencyTargets.cmake
@@ -45,17 +45,17 @@ IF (TARGET armadillo::armadillo)
45
ENDIF ()
46
47
# pybind11 dependency
48
-IF (NOT TARGET pybind11::pybind11)
+IF(NOT TARGET pybind11::pybind11)
49
IF (PYBIND11_ROOT_DIR)
50
ADD_SUBDIRECTORY(${PYBIND11_ROOT_DIR} pybind11)
51
- ELSE ()
+ ELSE()
52
IF (carma_FIND_REQUIRED)
53
FIND_PACKAGE(pybind11 CONFIG REQUIRED)
54
ELSE ()
55
FIND_PACKAGE(pybind11 CONFIG)
56
- ENDIF ()
57
+ ENDIF()
58
IF (pybind11_FOUND)
59
LIST(APPEND carma_INCLUDE_DIRS ${pybind11_INCLUDE_DIR})
60
61
-ENDIF ()
+ENDIF()
0 commit comments