Skip to content

Commit baa5ea9

Browse files
committed
revert some inconsistent if style
1 parent 8ee357c commit baa5ea9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cmake/carmaDependencyTargets.cmake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ IF (TARGET armadillo::armadillo)
4545
ENDIF ()
4646

4747
# pybind11 dependency
48-
IF (NOT TARGET pybind11::pybind11)
48+
IF(NOT TARGET pybind11::pybind11)
4949
IF (PYBIND11_ROOT_DIR)
5050
ADD_SUBDIRECTORY(${PYBIND11_ROOT_DIR} pybind11)
51-
ELSE ()
51+
ELSE()
5252
IF (carma_FIND_REQUIRED)
5353
FIND_PACKAGE(pybind11 CONFIG REQUIRED)
5454
ELSE ()
5555
FIND_PACKAGE(pybind11 CONFIG)
56-
ENDIF ()
57-
ENDIF ()
56+
ENDIF()
57+
ENDIF()
5858
IF (pybind11_FOUND)
5959
LIST(APPEND carma_INCLUDE_DIRS ${pybind11_INCLUDE_DIR})
60-
ENDIF ()
61-
ENDIF ()
60+
ENDIF()
61+
ENDIF()

0 commit comments

Comments
 (0)