diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-09 16:05:20 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-09 16:05:20 +0200 |
commit | b72daf9dbba95a208a4fb84e5b1c629d64a72c00 (patch) | |
tree | ece23b16b6da70bfc0c5ce9d16de3ff0b95be1e9 /src/CMakeLists.txt | |
parent | 0d329da1679e1a3a8639131560ad101d94aace9b (diff) | |
download | uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.gz uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.bz2 uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.tar.xz uca-b72daf9dbba95a208a4fb84e5b1c629d64a72c00.zip |
Fix #151: Rename trigger enum value
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dd2f464..160c52b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -130,6 +130,7 @@ if(GTK_DOC_FOUND) "${docs_out}/api-index-full.html" "${docs_out}/ch01.html" "${docs_out}/UcaCamera.html" + "${docs_out}/UcaPluginManager.html" "${docs_out}/style.css" "${docs_out}/uca.devhelp2" "${docs_out}/home.png" @@ -137,18 +138,6 @@ if(GTK_DOC_FOUND) "${docs_out}/right.png" "${docs_out}/up.png") - # Put in uca-docs.xml and uca.types all cameras that are built - set(_xml_doc_input) - set(_types_input) - foreach (_cam ${cameras}) - # add camera to the installed documentation - list(APPEND reference_files "${docs_out}/Uca${_cam}Camera.html") - - string(TOLOWER ${_cam} _cam) - set(_xml_doc_input "${_xml_doc_input}\n<xi:include href=\"xml/uca-${_cam}-camera.xml\"/>") - set(_types_input "${_types_input}\nuca_${_cam}_camera_get_type") - endforeach() - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/uca-docs.xml.in ${docs_out}/uca-docs.xml) |