summaryrefslogtreecommitdiffstats
path: root/test_package/CMakeLists.txt
blob: 2e4b2434c9d182e58c6f39dfc67d4a6b86957dce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.8.12)
project(TinyAesPackageTest C CXX)

include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()

add_executable(example ../test.c)
add_executable(example_cpp ../test.cpp)

target_link_libraries(example ${CONAN_LIBS})
target_link_libraries(example_cpp ${CONAN_LIBS})