#[[++

Copyright (C) 2019 PrimeDevelopers

All rights reserved.

This file has been generated by the Automatic Component Toolkit (ACT) version 1.6.0.

Abstract: This is an autogenerated CMake Project that demonstrates the
 usage of the C++ bindings of Prime Numbers Library

Interface version: 1.0.0


]]

cmake_minimum_required(VERSION 3.5)

project(LibPrimesExample_CPPImplicit)
set(CMAKE_CXX_STANDARD 11)
add_executable(LibPrimesExample_CPPImplicit "${CMAKE_CURRENT_SOURCE_DIR}/LibPrimes_example.cpp")
find_library(LIBPRIMESLOCATION libprimes "${CMAKE_CURRENT_SOURCE_DIR}/../../Implementations/*/*/*")
target_link_libraries(LibPrimesExample_CPPImplicit ${LIBPRIMESLOCATION})
target_include_directories(LibPrimesExample_CPPImplicit PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../Bindings/Cpp")
