mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 05:21:52 +03:00
11 lines
313 B
CMake
11 lines
313 B
CMake
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}) |