cmake support

This commit is contained in:
Vítor Santos Costa
2014-12-14 12:05:43 +00:00
parent 289a36a0a1
commit 90feb7f9f8
32 changed files with 2309 additions and 2047 deletions

View File

@@ -0,0 +1,15 @@
set ( RLTREE_SOURCES
range_list.c
range_list.h
)
add_library (yap_rl SHARED yap_rl.c ${RLTREE_SOURCES})
target_link_libraries(yap_rl libYap)
set_target_properties (yap_rl PROPERTIES PREFIX "")
install(TARGETS yap_rl
LIBRARY DESTINATION ${dlls} )