cmake-d/tests/app_5/CMakeLists.txt
2016-08-06 18:07:17 +02:00

7 lines
233 B
CMake

# This is a D app that links a C object.
#
# 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_5 app_5.d cfunc.c)
add_test(app_5 app_5)