blob: dd1387565e01764aac123a41a8842e863186fe7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
PORTNAME= quantum++
DISTVERSIONPREFIX= v
DISTVERSION= 6.0
CATEGORIES= misc devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= C++ header-only general purpose quantum computing library
WWW= https://github.com/softwareQinc/qpp
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
TEST_DEPENDS= googletest>0:devel/googletest
USES= cmake:testing compiler:c++17-lang eigen:3,build,run localbase:ldflags
USE_GITHUB= yes
GH_ACCOUNT= softwareQinc
GH_PROJECT= qpp
CMAKE_TESTING_TARGET= unit_tests
NO_BUILD= yes
NO_ARCH= yes
post-test: # run tests
@${BUILD_WRKSRC}/unit_tests/unit_tests
# tests as of 6.0:
# [==========] 457 tests from 325 test suites ran. (1585 ms total)
# [ PASSED ] 457 tests.
.include <bsd.port.mk>
|