Skip to content

Commit 8047ac8

Browse files
author
Sebastian Frysztak
committed
Fix new line indents in CMakeLists.txt
1 parent 863a28a commit 8047ac8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,35 +49,35 @@ if (SFML_FOUND)
4949
target_link_libraries(BenchMark pugi)
5050
target_link_libraries(BenchMark ${SFML_LIBRARIES})
5151
target_link_libraries(BenchMark ${ZLIB_LIBRARIES})
52-
install(TARGETS BenchMark RUNTIME DESTINATION share/tmx/examples)
52+
install(TARGETS BenchMark RUNTIME DESTINATION share/tmx/examples)
5353

5454
add_executable(DrawWithDebug examples/DrawMapWithDebug.cpp)
5555
target_link_libraries(DrawWithDebug ${PROJECT_NAME})
5656
target_link_libraries(DrawWithDebug pugi)
5757
target_link_libraries(DrawWithDebug ${SFML_LIBRARIES})
5858
target_link_libraries(DrawWithDebug ${ZLIB_LIBRARIES})
59-
install(TARGETS DrawWithDebug RUNTIME DESTINATION share/tmx/examples)
59+
install(TARGETS DrawWithDebug RUNTIME DESTINATION share/tmx/examples)
6060

6161
add_executable(Isometric examples/IsometricWithConvertCoords.cpp)
6262
target_link_libraries(Isometric ${PROJECT_NAME})
6363
target_link_libraries(Isometric pugi)
6464
target_link_libraries(Isometric ${SFML_LIBRARIES})
6565
target_link_libraries(Isometric ${ZLIB_LIBRARIES})
66-
install(TARGETS Isometric RUNTIME DESTINATION share/tmx/examples)
66+
install(TARGETS Isometric RUNTIME DESTINATION share/tmx/examples)
6767

6868
add_executable(QuadTree examples/MapWithQuadTree.cpp)
6969
target_link_libraries(QuadTree ${PROJECT_NAME})
7070
target_link_libraries(QuadTree pugi)
7171
target_link_libraries(QuadTree ${SFML_LIBRARIES})
7272
target_link_libraries(QuadTree ${ZLIB_LIBRARIES})
73-
install(TARGETS QuadTree RUNTIME DESTINATION share/tmx/examples)
73+
install(TARGETS QuadTree RUNTIME DESTINATION share/tmx/examples)
7474

7575
add_executable(ShaderEffects examples/ShaderEffects.cpp)
7676
target_link_libraries(ShaderEffects ${PROJECT_NAME})
7777
target_link_libraries(ShaderEffects pugi)
7878
target_link_libraries(ShaderEffects ${SFML_LIBRARIES})
7979
target_link_libraries(ShaderEffects ${ZLIB_LIBRARIES})
80-
install(TARGETS ShaderEffects RUNTIME DESTINATION share/tmx/examples)
80+
install(TARGETS ShaderEffects RUNTIME DESTINATION share/tmx/examples)
8181

8282
if(BOX2D_FOUND)
8383
add_executable(Box2D examples/Box2D.cpp src/tmx2box2d.cpp)
@@ -86,7 +86,7 @@ if (SFML_FOUND)
8686
target_link_libraries(Box2D ${SFML_LIBRARIES})
8787
target_link_libraries(Box2D ${ZLIB_LIBRARIES})
8888
target_link_libraries(Box2D ${BOX2D_LIBRARIES})
89-
install(TARGETS Box2D RUNTIME DESTINATION share/tmx/examples)
89+
install(TARGETS Box2D RUNTIME DESTINATION share/tmx/examples)
9090

9191
endif (BOX2D_FOUND)
9292

0 commit comments

Comments
 (0)