Add preliminary support for tracking dependencies

This commit is contained in:
Jens K. Mueller 2010-09-26 22:31:56 +02:00
commit 97b6c15587
7 changed files with 129 additions and 0 deletions

View file

@ -29,3 +29,4 @@ ADD_SUBDIRECTORY (app_5)
ADD_SUBDIRECTORY (app_4)
ADD_SUBDIRECTORY (app_6)
ADD_SUBDIRECTORY (app_7)
ADD_SUBDIRECTORY (app_8)

View file

@ -0,0 +1,4 @@
include(UseDDeps)
include_directories(.)
add_executable_with_dependencies(app_8 app_8.d)

0
tests/app_8/a.d Normal file
View file

9
tests/app_8/app_8.d Normal file
View file

@ -0,0 +1,9 @@
// barebones app, depends on the standard library
import std.stdio;
import a;
int main()
{
writeln( "Hello World!" );
return 0;
}