this repo has no description
1
fork

Configure Feed

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

If Building For Flatpak, Check `/app/lib` When Linking.

Thomas A f73b1dcd 3356b8f4

+12
+12
src/CMakeLists.txt
··· 5 5 6 6 cmake_policy(SET CMP0005 NEW) 7 7 8 + if(FLATPAK_BUILD) 9 + # Flatpak, by default, adds additional compiler/linker arugments to cmake. This, 10 + # unfortunately, causes issues with our built macOS linker. As a workaround, 11 + # we set Flatpak to not add any additional arguments. However, this means we are 12 + # responsible for referencing the non-standard directories. 13 + 14 + # For more details, refer to the following issue: 15 + # https://github.com/darlinghq/darling/issues/1113 16 + 17 + link_directories("/app/lib") 18 + endif(FLATPAK_BUILD) 19 + 8 20 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") 9 21 include(mig) 10 22 include(pyc)