this repo has no description
1
fork

Configure Feed

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

Move `link_directories("/app/lib")` into bsdln

See the following for details: https://github.com/darlinghq/darling/issues/1113#issuecomment-1065830000

Thomas A f1b45cd5 f73b1dcd

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