include CLP(QR)

This commit is contained in:
Vitor Santos Costa 2016-11-23 18:07:15 -06:00
parent f44ef18fed
commit 6c96a8e35b
2 changed files with 29 additions and 0 deletions

View File

@ -68,6 +68,8 @@ add_subDIRECTORY (packages/ProbLog)
add_subDIRECTORY (packages/swi-minisat2)
add_subDIRECTORY (packages/clpqr)
#todo: use cmake target builds
# option (USE_MAXPERFORMANCE

View File

@ -0,0 +1,27 @@
################################################################
# SWI-Prolog CLPQR package
# Author: Jan Wielemaker. jan@swi.psy.uva.nl
# Copyright: LGPL (see COPYING or www.gnu.org
################################################################
set (CLPRPRIV clpr/bb_r.pl clpr/bv_r.pl
clpr/fourmotz_r.pl clpr/ineq_r.pl
clpr/itf_r.pl clpr/nf_r.pl
clpr/store_r.pl )
set(CLPQPRIV clpq/bb_q.pl clpq/bv_q.pl
clpq/fourmotz_q.pl clpq/ineq_q.pl
clpq/itf_q.pl clpq/nf_q.pl
clpq/store_q.pl)
set (CLPQRPRIV clpqr/class.pl clpqr/dump.pl
clpqr/geler.pl clpqr/itf.pl
clpqr/ordering.pl
clpqr/project.pl clpqr/redund.pl)
set (LIBPL clpr.pl clpq.pl ${CLPRPRIV} ${CLPQPRIV} ${CLPQRPRIV} )
install ( FILES ${LIBPL} DESTINATION ${libpl} )
# $(PL) -q -f $(srcdir)/clpr_test.pl -g test,halt -t 'halt(1)'