mirror of
https://github.com/NoelFB/blah.git
synced 2024-11-25 16:18:57 +08:00
fixed cmakelists requiring newline after if statement
This commit is contained in:
parent
5a6a53f4bc
commit
b2bcf66a37
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user