From 5b21e377725d283adc7f2d483c8e36ae8b8885e6 Mon Sep 17 00:00:00 2001 From: Eric Mertens Date: Sat, 12 Nov 2022 15:40:20 -0800 Subject: [PATCH] fix zmod cmake definitions --- .gitignore | 1 + zmod/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b7d879f..902f566 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /build /release +/out /xcode .*.swp diff --git a/zmod/CMakeLists.txt b/zmod/CMakeLists.txt index faabdd4..25e7693 100644 --- a/zmod/CMakeLists.txt +++ b/zmod/CMakeLists.txt @@ -1,3 +1,3 @@ add_library(zmod INTERFACE) -target_link_libraries(zmod PkgConfig::GMP) -target_include_directories(zmod PUBLIC include) \ No newline at end of file +target_link_libraries(zmod INTERFACE PkgConfig::GMP) +target_include_directories(zmod INTERFACE include)