this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #217 from cosmo-ray/fix

Fix include order so local paths are preferred to avoid compilation error.

authored by

Jonathan Dearborn and committed by
GitHub
ffe2c80a c651912e

+4 -4
+4 -4
CMakeLists.txt
··· 145 145 include(ios-cmake/toolchain/XcodeDefaults) 146 146 endif() 147 147 148 + # Make local includes look in the right places 149 + include_directories(include) 150 + include_directories(src) 151 + 148 152 #if ( BUILD_DEBUG ) 149 153 # SET(CMAKE_BUILD_TYPE Debug) 150 154 #else ( BUILD_DEBUG ) ··· 309 313 find_library(M_LIB m) 310 314 link_libraries(${M_LIB}) 311 315 endif (NOT WIN32 AND NOT EMSCRIPTEN) 312 - 313 - # Make local includes look in the right places 314 - include_directories(include) 315 - include_directories(src) 316 316 317 317 if(NOT GLEW_FOUND) 318 318 include_directories(src/externals/glew)