Skip to content

Commit

Permalink
GraphBLAS/JITpackage: Include directory on target level.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Dec 19, 2023
1 parent 72dd65e commit 8c9c4b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GraphBLAS/JITpackage/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

cmake_minimum_required ( VERSION 3.20 ) # GraphBLAS can be built stand-alone
project ( jitpackage LANGUAGES C )
include_directories ( ../zstd ../zstd/zstd_subset )
add_executable ( grb_jitpackage "Source/grb_jitpackage.c" )
add_executable ( grb_jitpackage "Source/grb_jitpackage.c" )
target_include_directories ( grb_jitpackage PRIVATE ../zstd/zstd_subset )
if ( NOT WIN32 )
target_link_libraries ( grb_jitpackage PUBLIC m )
target_link_libraries ( grb_jitpackage PRIVATE m )
endif ( )

file ( GLOB GRB_SOURCE_FILES
Expand Down

0 comments on commit 8c9c4b1

Please sign in to comment.