cmake: no indentation for closing cmake command parenthesis

This commit is contained in:
Anonymous Maarten
2020-12-03 18:11:55 +01:00
parent 9c578580ec
commit 32234609ea
6 changed files with 39 additions and 39 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
add_executable(dumprwtree
dumprwtree.cpp
)
dumprwtree.cpp
)
target_link_libraries(dumprwtree
PUBLIC
librw
)
)
if(LIBRW_INSTALL)
install(TARGETS dumprwtree
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)
)
endif()
+3 -3
View File
@@ -1,15 +1,15 @@
add_executable(imguitest WIN32
main.cpp
)
)
target_link_libraries(imguitest
PUBLIC
librw
librw_skeleton_imgui
)
)
if(LIBRW_INSTALL)
install(TARGETS imguitest
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)
)
endif()