Skip to content

Commit

Permalink
Merge pull request #516 from nosracd/bump/macos_ci
Browse files Browse the repository at this point in the history
Bump macOS CI
  • Loading branch information
ihilt authored Jun 27, 2024
2 parents e72f1ba + 7728ab8 commit 64e149f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
macos:
strategy:
matrix:
os: [macos-11, macos-12]
os: [macos-13, macos-14]

runs-on: ${{ matrix.os }}

Expand Down
9 changes: 8 additions & 1 deletion examples/cpp/lcm_log_writer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ cmake_minimum_required(VERSION 3.5)

project(lcm_log_writer)

# Include this directory for finding GLib2, using the file FindGLib2.cmake.
# **WARNING** If you want to reuse this example, you will need to copy
# FindGLib2.cmake to your new project and adjust your CMAKE_MODULE_PATH.
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../../cmake")

find_package(GLib2 REQUIRED)

find_package(lcm REQUIRED)
include(${LCM_USE_FILE})

Expand All @@ -16,4 +23,4 @@ target_include_directories(pjs_messages-cpp INTERFACE

# Create executable
add_executable(lcm_log_writer "main.cpp")
lcm_target_link_libraries(lcm_log_writer pjs_messages-cpp ${LCM_NAMESPACE}lcm)
lcm_target_link_libraries(lcm_log_writer pjs_messages-cpp ${LCM_NAMESPACE}lcm-static)

0 comments on commit 64e149f

Please sign in to comment.