Skip to content

Commit

Permalink
test package requires C++20
Browse files Browse the repository at this point in the history
  • Loading branch information
uilianries committed Jun 20, 2024
1 parent b9302d0 commit feb7c2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/lielab/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)

find_package(Lielab REQUIRED CONFIG)

add_executable(${PROJECT_NAME} test_package.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE Lielab::Lielab)
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_20)

0 comments on commit feb7c2e

Please sign in to comment.