file shuffling
January 19th, 2009 by BramzToday, we’ve restructured the file hierarchy of lass a bit. Here’s what has been done:
- The directory
src
has been renamed tolass
. This allows you to include the headers from your working copy into other projects using the#include <lass/foo/bar.h>
way. It used to be that you either had to install lass, or had to copy the headers fromsrc
to a directorylass
. But not any longer. - The directory containing the test suite has been moved one level up, next to the new directory
lass
, and is now calledtest_suite
. This agrees with how lass is build, with two build targets: the librarylass
and the executabletest_suite
. - All Python related headers and source files have been given their own directory
lass/python
, instead of hiding within theutil
directory and other places. So now you will have to use#include <lass/python/python_api.h>
instead of#include <lass/util/python_api.h>
. This will allow us to better organize the Python code.