-
Notifications
You must be signed in to change notification settings - Fork 0
Creating a DDS Project
To setup a DDS project you'll need to install DDS and add the Trove to DDS's local database. Instructions for this are available on the Setup Trove Page.
Once you're setup, you'll need to create a workable project directory that DDS is able to build from. To do this from scratch, head over to the Official Documentation of DDS and follow the tutorial over there to understand the layout of a project. If you want to get started right away.
I've also created some templates for either a standalone build, a package that can be published to trovepi.dev To use the templates, click the link and click the "Use Template" button in green. Create the new repository on your GitHub and then clone it to your local machine to begin development:
Each offers a slightly different setup depending on the type of project you're building. A more concise tutorial for using the templates is available on the Templates page.
To verify a clone worked run the following command in the terminal:
dds build -t :gcc
This should output:
Hello from the template!
You can change any of the file and directory names you want that are contained in the src/ directory. If you do change them, you have to update the #include
macro calls in all the files.
Additionally, the package.json5 files need to be changed to reflect this.
{
name: 'insert-your
Up Next