File: TePDIExamplesBase.hpp

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.2-10
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 61,560 kB
  • ctags: 37,110
  • sloc: cpp: 225,052; ansic: 31,562; makefile: 807; sh: 80; xml: 37
file content (16 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TEPDIEXAMPLESBASE_HPP
  #define TEPDIEXAMPLESBASE_HPP

  #include "TeDefines.h"

  #if TePLATFORM == TePLATFORMCODE_MSWINDOWS
    #define TEPDIEXAMPLESRESPATH "..\\..\\resources\\"
    #define TEPDIEXAMPLESBINPATH "..\\..\\bin\\"
  #elif TePLATFORM == TePLATFORMCODE_LINUX
    #define TEPDIEXAMPLESRESPATH "../resources/"
    #define TEPDIEXAMPLESBINPATH "../bin/"
  #else
    #error "ERROR: Unsupported platform"
  #endif

#endif