this repo has no description
1
fork

Configure Feed

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

Move `/usr/lib/x86_64-linux-gnu/include` import

Having the import live in the `src` directory causes conflicts to appear, so I moved the import to `src/startup` instead.

Thomas A 3356b8f4 44ec7985

+6 -6
-6
src/CMakeLists.txt
··· 5 5 6 6 cmake_policy(SET CMP0005 NEW) 7 7 8 - if(FLATPAK_BUILD) 9 - # For some reason, some of the header files are not included in the 10 - # `/usr/include` directory. 11 - include_directories("/usr/lib/x86_64-linux-gnu/include") 12 - endif(FLATPAK_BUILD) 13 - 14 8 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") 15 9 include(mig) 16 10 include(pyc)
+6
src/startup/CMakeLists.txt
··· 9 9 10 10 enable_language(C ASM) 11 11 12 + if(FLATPAK_BUILD) 13 + # For some reason, some of the header files are not included in the 14 + # `/usr/include` directory. 15 + include_directories("/usr/lib/x86_64-linux-gnu/include") 16 + endif(FLATPAK_BUILD) 17 + 12 18 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -ggdb -O0") 13 19 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 14 20 #set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-Ttext-segment,0x400000 -Wl,-Tbss,0x410000 -Wl,-Tdata,0x420000")