Sha256: 58a42d5921a7f7f9851f7b7743fffda1f32d74fa8ba96b1c40a7e4788fe117e1

Contents?: true

Size: 528 Bytes

Versions: 8

Compression:

Stored size: 528 Bytes

Contents

cmake_minimum_required (VERSION 3.0)
project (example)

if(EXAMPLE_MSGPACK_EMBEDDED)
    add_subdirectory(msgpack-c)
    set(msgpack_DIR ${CMAKE_CURRENT_BINARY_DIR}/msgpack-c)
endif()

find_package(msgpack REQUIRED)

add_executable (${PROJECT_NAME} ${CMAKE_CURRENT_LIST_DIR}/../c/simple_c.c)
target_link_libraries(${PROJECT_NAME} msgpackc)

if(TARGET msgpackc-static)
    add_executable (${PROJECT_NAME}-static ${CMAKE_CURRENT_LIST_DIR}/../c/simple_c.c)
    target_link_libraries(${PROJECT_NAME}-static msgpackc-static)
endif()

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
script_core-0.3.2 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.3.0 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.7 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.6 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.5 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.4 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.3 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt
script_core-0.2.2 ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt