I am using CCS 5.1.0.09000. I have a directory with a bunch of random code I want to reuse and be common between several different workspaces. Lets this common code directory is located at "c:\commoncode" it has 2 files in it "common.c" and "common.h". I do the following
- Start new workspace.
- Import stellarisware driverlib and an example project to start off with (for this i used "C:\StellarisWare\boards\ek-lm4f232\sine_demo")
- Right Click on sine_demo Project > Properties > Build > TMS470 Compiler > Include Options > add "c:\commoncode" to the search path
- Drag the "commoncode" directory into the sine_demo project and tell CCS to link and retain folder structure.
- include "common.h" in "sine_demo.c"
- add a function into main of "sine_demo.c" from "common.c"
- Clean and Build sine_demo.
Doing this is get the following warning "This project contains unresolved buildable linked resources". Where am I going wrong? I am not trying to make a portable project or anything like that I just need to make this work on 1 computer but will be using multiple workspaces and would like to just maintain 1 common directory for code they want to share.