1 //
2 //  config-opentomb.h
3 //  OpenTomb
4 //
5 //  Created by Torsten Kammer on 20.08.16.
6 //
7 //
8 
9 /*
10  * This is a default version of config-opentomb.h for the people with workflows that don't include CMake, i.e. ones who
11  * set up all their paths in their IDE of choice manually. CMake is definitely the recommended way in the future.
12  *
13  * CMake automatically generates a dynamic version of the file based on config-opentomb.h.in and then uses only that.
14  * So if you feel the need to edit this file, please do the same changes to config-opentomb.h.in as well.
15  */
16 
17 #ifndef config_opentomb_h_in_h
18 #define config_opentomb_h_in_h
19 
20 #define HAVE_ALC_H 1
21 #define HAVE_EFX_H 1
22 #define HAVE_ALEXT_H 1
23 #define HAVE_EFX_PRESETS_H 1
24 
25 #ifdef HAVE_ALEXT_H
26 #define AL_ALEXT_PROTOTYPES
27 #endif
28 
29 #endif /* config_opentomb_h */
30