Add preliminary support for tracking dependencies
This commit is contained in:
parent
6c77dd84e8
commit
97b6c15587
7 changed files with 129 additions and 0 deletions
|
@ -29,3 +29,4 @@ ADD_SUBDIRECTORY (app_5)
|
|||
ADD_SUBDIRECTORY (app_4)
|
||||
ADD_SUBDIRECTORY (app_6)
|
||||
ADD_SUBDIRECTORY (app_7)
|
||||
ADD_SUBDIRECTORY (app_8)
|
||||
|
|
4
tests/app_8/CMakeLists.txt
Normal file
4
tests/app_8/CMakeLists.txt
Normal 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
0
tests/app_8/a.d
Normal file
9
tests/app_8/app_8.d
Normal file
9
tests/app_8/app_8.d
Normal file
|
@ -0,0 +1,9 @@
|
|||
// barebones app, depends on the standard library
|
||||
import std.stdio;
|
||||
import a;
|
||||
|
||||
int main()
|
||||
{
|
||||
writeln( "Hello World!" );
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue