mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 14:29:06 +08:00
15 lines
291 B
CMake
15 lines
291 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
project(jack2 C)
|
|
|
|
include_directories(common)
|
|
|
|
add_library(jack2 STATIC common/JackWeakAPI.c)
|
|
|
|
install(TARGETS jack2
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
|
|
install(DIRECTORY common/jack DESTINATION include)
|