diff options
Diffstat (limited to 'src/uca.c')
| -rw-r--r-- | src/uca.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -30,6 +30,10 @@  #include "cameras/ipe.h"  #endif +#ifdef HAVE_SIMPLE_CAMERA +#include "cameras/simple.h" +#endif +  const char *uca_unit_map[] = {      "px",      "bits", @@ -134,6 +138,9 @@ struct uca *uca_init(const char *config_filename)  #ifdef HAVE_DUMMY_CAMERA          uca_dummy_init,  #endif +#ifdef HAVE_SIMPLE_CAMERA +        uca_simple_init, +#endif          NULL      }; | 
