1
0
mirror of https://github.com/NoelFB/blah.git synced 2025-04-14 01:56:05 +08:00

fixed cmakelists requiring newline after if statement

This commit is contained in:
Noel Berry 2022-03-17 00:57:54 -07:00
parent 5a6a53f4bc
commit b2bcf66a37

View File

@ -96,5 +96,9 @@ endif()
target_link_libraries(blah PRIVATE ${LIBS})
# toggle options
if (BLAH_NO_FUNCTIONAL) add_compile_definitions(BLAH_NO_FUNCTIONAL) endif()
if (BLAH_NO_SHARED_PTR) add_compile_definitions(BLAH_NO_SHARED_PTR) endif()
if (BLAH_NO_FUNCTIONAL)
add_compile_definitions(BLAH_NO_FUNCTIONAL)
endif()
if (BLAH_NO_SHARED_PTR)
add_compile_definitions(BLAH_NO_SHARED_PTR)
endif()