• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H19-Mar-2021-3730

Inventor/H19-Mar-2021-5,2184,249

SoPyScript/H19-Mar-2021-833611

VolumeViz/nodes/H19-Mar-2021-5441

distutils_cmake/H03-May-2022-

docs/H03-May-2022-5,2763,871

examples/H19-Mar-2021-11,5176,234

fake_headers/H07-May-2022-540

interfaces/H03-May-2022-2,5782,005

packaging/H19-Mar-2021-547425

pivy/H19-Mar-2021-2,9262,052

scons/H19-Mar-2021-50,31032,598

tests/H19-Mar-2021-1,3261,098

.gitignoreH A D19-Mar-2021183 1413

.travis.ymlH A D19-Mar-20211.3 KiB2827

AUTHORSH A D19-Mar-2021107 43

HACKINGH A D19-Mar-2021573 1310

LICENSEH A D19-Mar-2021737 1411

MANIFEST.inH A D19-Mar-2021273 1211

NEWSH A D19-Mar-20211.4 KiB4038

README.mdH A D19-Mar-2021944 4129

SConstructH A D19-Mar-20215.4 KiB139111

THANKSH A D19-Mar-2021477 2725

TargetCopyFiles.cmakeH A D19-Mar-20215.8 KiB157140

install_helpers.pyH A D19-Mar-20212.7 KiB7253

qtinfo.pyH A D19-Mar-20212.6 KiB8265

setup.pyH A D03-May-202228.9 KiB687539

setup_old.pyH A D19-Mar-202123.8 KiB538436

README.md

1General build instructions:
2---------------------------
3[![Build Status](https://travis-ci.org/Coin3D/pivy.svg?branch=master)](https://travis-ci.org/Coin3D/pivy)
4
5Starting with version 0.6.6 pivy it's possible to build pivy with cmake:
6
7```bash
8  $ cd pivy
9  $ mkdir build
10  $ cd build
11  $ cmake ..
12  $ make
13```
14
15Alternative it's still possible to use [distutils][0]:
16
17```bash
18  $ python3 setup.py build
19  $ python3 setup.py install
20```
21
22For older system/distros please use the `setup_old.py` script to build pivy.
23
24Reporting bugs:
25--------------
26
27Please submit bug reports, feature requests, etc. to the [Pivy
28issue tracker][1].
29
30Contact:
31--------
32
33If you have any questions regarding Pivy or simply want to discuss
34with other Pivy users, you can do so at the general [coin-discuss
35mailinglist][2].
36
37
38[0]: http://www.python.org/sigs/distutils-sig/
39[1]: https://github.com/Coin3D/pivy/issues
40[2]: http://groups.google.com/group/coin3d-discuss
41