Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
Add 'accelerate' example
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Apr 2, 2019
1 parent e03590e commit 6ad2c89
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/accelerate/CMakeLists.txt
@@ -0,0 +1,15 @@
# Copyright (c) 2016-2019, Ruslan Baratov
# All rights reserved.

cmake_minimum_required(VERSION 3.2)

# Emulate HunterGate:
# * https://github.com/hunter-packages/gate
include("../common.cmake")

project(download-accelerate)

find_package(accelerate REQUIRED)

add_executable(foo foo.mm)
target_link_libraries(foo PUBLIC accelerate::accelerate)
4 changes: 4 additions & 0 deletions examples/accelerate/foo.mm
@@ -0,0 +1,4 @@
#import <Accelerate/Accelerate.h>

int main() {
}

0 comments on commit 6ad2c89

Please sign in to comment.