File: configall_system.h

package info (click to toggle)
coinutils 2.11.4%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,212 kB
  • sloc: cpp: 73,714; sh: 11,224; makefile: 276; ansic: 35
file content (13 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (59)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * This header file is included by the *Config.h in the individual
 * COIN packages when the code is compiled in a setting that doesn't
 * use the configure script (i.e., HAVE_CONFIG_H is not defined).
 * This header file includes the system and compile dependent header
 * file defining macros that depend on what compiler is used.
 */

#ifdef _MSC_VER
# include "configall_system_msc.h"
#else
# error "Trying to use configall_system for unknown compiler."
#endif