This is a template of how to get started with vxl, pyvxl, and your own pybind11 package
source 'setup.env'
just setup
just run vxl
- Edit
./CMakeFiles.txt
and changeproject
to your project name, and renamePROJ_
variables to your ownPREFIX_
- Rename
hello
to what you want to call it and replace with your own files. (I will reference the new name as{hello}
, but substitute the actual name when following these instructions) - Update
./CMakeFiles.txt
and find theadd_subdirectory
line forhello
and change to{hello}
- Update
./{hello}/CMakeFiles.txt
to reflect your new files - Update
./{hello}/tests/CMakeFiles.txt
to reflect your new names - Rename
./pyproj
to your name ({pyproj}
refers to the new name) - Update
./CMakeFiles.txt
and find theadd_subdirectory
line forpyproj
and change to{pyproj}
- Rename
./{pyproj}/{pyhello}.*
files - Update
pyproj
andpyhello
names in{pyproj}/CMakeList.txt
- Update
pyproj
andpyhello
names in{pyproj}/tests/CMakeList.txt
- Update
proj
inPYBIND11_MODULE
line of{pyproj}/{pyproj.cxx}
Clean and rebuild