Skip to content

Commit

Permalink
Add missing poppler test CMakeLists.txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Jun 17, 2024
1 parent 0a905ea commit a578c97
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/poppler/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Taken from https://github.com/conan-io/conan-center-index
# Taken from https://github.com/valgur/conan-center-index/tree/migrate/poppler
# Copy not as is, modifications were made

import os

Expand Down
8 changes: 8 additions & 0 deletions recipes/poppler/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)

find_package(poppler REQUIRED CONFIG)

add_executable(${PROJECT_NAME} test_package.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE poppler::poppler)
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)

0 comments on commit a578c97

Please sign in to comment.