Hello, I have a problem long ago with header files. For example, I have the following file:
/* ============================================================================
* Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005
*
* Use of this software is controlled by the terms and conditions found in the
* license agreement under which this software has been supplied.
* ===========================================================================
*/
/** ============================================================================
* @file csl_types.h
*
* @path $(CSLPATH)\inc
*
* @desc This file contains type definitions of data types for CSL
* ============================================================================
*/
#ifndef _CSL_TYPES_H_
#define _CSL_TYPES_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <ti/sdo/pspdrivers/soc/dm6437/dsp/tistdtypes.h>
....
.
And the CCS is saying me that it does not find the <ti/sdo/pspdrivers/soc/dm6437/dsp/tistdtypes.h> file. I use to solve going to build options and adding the folder where is this file in the preprocessor directive for EVERY file that had the problem (I tried to do it globally but did not always work). So I would like to know how to solve this conflict in a easier and better way. I have seen that the environment variables are set in DosRun.bat, but I do not know what DIR I should add. And in general terms for this kind of problems where I could find some info about header and environment variables?
Thanks in advance