Skip to content

oscpackv1.1.0

Updated

A simple C++ Open Sound Control (OSC) packet manipulation library

#Usage

oscpack can be used from CMake via:

find_path(OSCPACK_INCLUDE_DIRS "osc" PATH_SUFFIXES "oscpack")
find_library(OSCPACK_LIBRARY oscpack REQUIRED)
target_include_directories(main PRIVATE ${OSCPACK_INCLUDE_DIRS})
target_link_libraries(main PRIVATE ${OSCPACK_LIBRARY})

In case of Windows static link in addition:

target_link_libraries(main PRIVATE ws2_32 winmm)

#License

Not declared in the port manifest

#Supported Platforms

!(windows & !static)

  • linux
  • osx
  • uwp
  • windows-static
  • windows-dynamic

#Features

No features defined.

#Dependencies

No dependencies.

#Host Dependencies

No transitive dependencies.

#Used By

No ports use this.

#Host Tool For

No ports use this.

#Contributors

  • Daniel Schürmann's avatarDaniel Schürmann

#Changelog

  • 1bb0319[oscpack] add new port (#43290)