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,13 +3,5 @@
# The linker preference of D is higher than C (or CXX), so after
# the objects are created, the D toolchain will drive linking.
#
# TODO
# dirty fix
# we should make the CMAKE_D_COMPILER_ID work
#
# This 32-bit environment check no longer needed as of dmd 2.053 on Linux
#IF("${CMAKE_BASE_NAME}" MATCHES "dmd")
# SET(CMAKE_C_FLAGS "-m32 ${CMAKE_C_FLAGS}" )
#ENDIF()
ADD_EXECUTABLE ( app_5 app_5.d cfunc.c )
ADD_TEST( app_5 app_5 )
add_executable(app_5 app_5.d cfunc.c)
add_test(app_5 app_5)