Skip to content

Instantly share code, notes, and snippets.

View dscso's full-sized avatar

Jurek dscso

View GitHub Profile
cmake_minimum_required(VERSION 3.25)
project(minijack C)
set(CMAKE_C_STANDARD 11)
# can be removed later just for mac
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
add_library(jacknet UNKNOWN IMPORTED)
set_target_properties(jacknet PROPERTIES
IMPORTED_LOCATION "/opt/homebrew/lib/libjacknet.dylib"
)