Quote:
Originally Posted by Mike Soukup
No .project, no .wr* files, no objects. Nothing but .h & .cpp.
|
We too do it like this, except using a much superior version control system (okay that is open to opinion of course), Git.
Sample .gitignore file:
Code:
*~
*.bak
*.cproject
*.project
*.wrmakefile
*.wrproject
Makefile
*.c
*.o
*.d
*.a
Quote:
Originally Posted by Mike Soukup
Then in workbench we create a new project based on one of the FRC examples, delete all the .cpp & .h files that it created in the project, and add the folder that has all our files to the project (Right click on project -> New -> Folder. Click "Advanced", select "Link to folder in the file system", and browse to the folder).
|
Why not set default build properties for vxWorks Downloadable Kernel Module projects and simply create a new project?