I have this file structure:
myProject
|
└── FolderToInclude
| |
| └── somebatfile.bat
|
└── src
| |
| └── main.rs
|
└── target
|
└── debug
|
└── myProject.exe // and other stuff
Is it possible in rust to include a folder in the build directory? I want to end up with this file structure:
myProject
|
└── FolderToInclude
| |
| └── somebatfile.bat
|
└── src
| |
| └── main.rs
|
└── target
|
└── debug
|
└── myProject.exe // and other stuff
|
└── FolderToInclude
|
└── somebatfile.bat