diff options
author | Stephen Robinson <sblazerobinson@gmail.com> | 2020-04-02 15:49:03 -0700 |
---|---|---|
committer | Stephen Robinson <sblazerobinson@gmail.com> | 2020-05-20 18:15:52 -0700 |
commit | b20931571484108d1ec29eaab5b731e754649664 (patch) | |
tree | 625ca0665083c3653d264d4235b0c9b735cb80a8 /test/test_c_projects/makefile_project | |
parent | 7ff87a942b8a6c2cf50b7cf34f9b98421508f542 (diff) | |
download | ale-b20931571484108d1ec29eaab5b731e754649664.zip |
Fixes #3092 - Implement loading `@file` c arguments
Diffstat (limited to 'test/test_c_projects/makefile_project')
-rw-r--r-- | test/test_c_projects/makefile_project/args | 3 | ||||
-rw-r--r-- | test/test_c_projects/makefile_project/subdir/args | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/test/test_c_projects/makefile_project/args b/test/test_c_projects/makefile_project/args new file mode 100644 index 00000000..ccaf82ad --- /dev/null +++ b/test/test_c_projects/makefile_project/args @@ -0,0 +1,3 @@ +foolib.a +-DARGS1 +@subdir/args diff --git a/test/test_c_projects/makefile_project/subdir/args b/test/test_c_projects/makefile_project/subdir/args new file mode 100644 index 00000000..3fe9c3fe --- /dev/null +++ b/test/test_c_projects/makefile_project/subdir/args @@ -0,0 +1 @@ +-DARGS2 |