rtos demo include files

Hi Richard/Gents
I am trying to build and run the (WIN32-MingW) example under  FreeRTOSDemoWIN32-MingW  using eclipse
I have set all the paths and have manualy copied the file portmacro.h in the project directory
when I build it recognized all the included header files but gives me all the below errors **
ERRORS
undefined reference to `vStartBlockingQueueTasks’ main.c /RTOSDemo line 123 C/C++ Problem
undefined reference to `vStartGenericQueueTasks’ main.c /RTOSDemo line 127 C/C++ Problem
undefined reference to `vStartIntegerMathTasks’ main.c /RTOSDemo line 126 C/C++ Problem
undefined reference to `vStartMathTasks’ main.c /RTOSDemo line 129 C/C++ Problem
undefined reference to `vStartPolledQueueTasks’ main.c /RTOSDemo line 125 C/C++ Problem
undefined reference to `vStartQueuePeekTasks’ main.c /RTOSDemo line 128 C/C++ Problem
undefined reference to `vStartRecursiveMutexTasks’ main.c /RTOSDemo line 130 C/C++ Problem
undefined reference to `vStartSemaphoreTasks’ main.c /RTOSDemo line 124 C/C++ Problem
undefined reference to `vTaskDelayUntil’ main.c /RTOSDemo line 156 C/C++ Problem
undefined reference to `vTaskStartScheduler’ main.c /RTOSDemo line 133 C/C++ Problem
undefined reference to `xAreBlockingQueuesStillRunning’ main.c /RTOSDemo line 171 C/C++ Problem
undefined reference to `xAreGenericQueueTasksStillRunning’ main.c /RTOSDemo line 163 C/C++ Problem
undefined reference to `xAreIntegerMathsTaskStillRunning’ main.c /RTOSDemo line 159 C/C++ Problem
undefined reference to `xAreMathsTaskStillRunning’ main.c /RTOSDemo line 183 C/C++ Problem
undefined reference to `xArePollingQueuesStillRunning’ main.c /RTOSDemo line 179 C/C++ Problem
undefined reference to `xAreQueuePeekTasksStillRunning’ main.c /RTOSDemo line 167 C/C++ Problem
undefined reference to `xAreRecursiveMutexTasksStillRunning’ main.c /RTOSDemo line 187 C/C++ Problem
undefined reference to `xAreSemaphoreTasksStillRunning’ main.c /RTOSDemo line 175 C/C++ Problem
undefined reference to `xTaskGenericCreate’ main.c /RTOSDemo line 120 C/C++ Problem
undefined reference to `xTaskGetTickCount’ main.c /RTOSDemo line 151 C/C++ Problem
undefined reference to `xTaskGetTickCount’ main.c /RTOSDemo line 194 C/C++ Problem
WARNI**NGS Description Resource Path Location Type
Invalid project path: Include path not found (RTOSDemoDemoTasksinclude). RTOSDemo pathentry Path Entry Problem
Invalid project path: Include path not found (RTOSDemoFreeRTOSinclude). RTOSDemo pathentry Path Entry Problem
Invalid project path: Include path not found (RTOSDemoFreeRTOSportableMSVC-MingW). RTOSDemo pathentry Path Entry Problem

rtos demo include files

It is just not finding (and therefore not building) the source files that, by default, are outside of the project directory. Did you run the file FreeRTOSDemoWIN32-MingWCreateProjectDirectoryStructure.bat before doing anything else?  You should need to manually copy any files after the batch file has been run. Read the “Preparing the Eclipse project” section of the following page:
http://www.freertos.org/FreeRTOS-Windows-Simulator-Emulator-for-Visual-Studio-and-Eclipse-MingW.html Regards.

rtos demo include files

cheers Richard the batch file was the key, I ran that and re-imported the project again and its fine
many thanks……