Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
keep link libraries in the base CMakeLists.txt
  • Loading branch information
sambler committed Apr 6, 2025
commit 2acbf1ff252e22874ad02bdf4b51c19e8ba1fb5e
4 changes: 4 additions & 0 deletions build/cmake/lib/base/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,7 @@ if(APPLE)
elseif(UNIX)
wx_lib_link_libraries(wxbase PRIVATE ${CMAKE_DL_LIBS})
endif()

if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
wx_lib_link_libraries(wxbase PUBLIC "procstat")
endif()
1 change: 0 additions & 1 deletion build/cmake/setup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,6 @@ check_include_file(wcstr.h HAVE_WCSTR_H)

if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
set(wxHAVE_PROCSTAT 1)
wx_lib_link_libraries(wxbase PUBLIC "procstat")
endif()

if(wxUSE_DATETIME)
Expand Down
Loading