cmake-d/tests/app_5/CMakeLists.txt

8 lines
233 B
Text
Raw Normal View History

# 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.
#
2016-08-06 15:50:42 +00:00
add_executable(app_5 app_5.d cfunc.c)
add_test(app_5 app_5)