1# Include directories.
2include_directories(
3  "${CMAKE_BINARY_DIR}"
4  "${CMAKE_BINARY_DIR}/include"  # For version.h.
5  "${CMAKE_SOURCE_DIR}/include"
6)
7
8# External include paths, marked as system ones to disable their warnings.
9include_directories(SYSTEM
10  "${SOLARUS_INCLUDE_DIRS}"
11  "${SOLARUS_INCLUDE_DIRS}/solarus/third_party"
12  "${SOLARUS_INCLUDE_DIRS}/solarus/third_party/snes_spc"
13  "${SOLARUS_GUI_INCLUDE_DIRS}"
14  "${MODPLUG_INCLUDE_DIRS}"  # Before SDL2 because we want the sndfile.h of ModPlug.
15  "${SDL2_INCLUDE_DIRS}"
16  "${SDL2_TTF_INCLUDE_DIR}"
17  "${SDL2_IMAGE_INCLUDE_DIR}"
18  "${OPENAL_INCLUDE_DIR}"
19  "${VORBISFILE_INCLUDE_DIR}"
20  "${OGG_INCLUDE_DIR}"
21  "${LUA_INCLUDE_DIR}"
22  "${PHYSFS_INCLUDE_DIR}"
23)
24