Fix coding style

This commit is contained in:
Dragos Carp 2016-08-06 17:50:42 +02:00
commit 18c7e125bf
28 changed files with 412 additions and 433 deletions

View file

@ -3,7 +3,7 @@
# The linker preference of D is higher than C (or CXX), so after
# the objects are created, the D toolchain will drive linking.
#
ADD_EXECUTABLE ( app_4 app_4.d )
INCLUDE_DIRECTORIES( app_4 ${PROJECT_SOURCE_DIR} )
TARGET_LINK_LIBRARIES( app_4 lib_2 )
ADD_TEST( app_4 app_4 )
add_executable(app_4 app_4.d)
include_directories(app_4 ${PROJECT_SOURCE_DIR})
add_test(app_4 app_4)
target_link_libraries(app_4 lib_2)