diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-11-01 17:22:31 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-11-01 17:22:40 +0100 |
| commit | aaaf0a0537e03cec7a47330550a31bb4e96dacde (patch) | |
| tree | 820ea79b85ed1e3b9fdcfe9ef0b2fc16a15c5cc6 /fluid/CMakeLists.txt | |
| parent | 5f836377a0f4e5c7b90b06ba4b4fefc3ccf04a39 (diff) | |
FLUID: Adds options to draw ghosted outlines.
Diffstat (limited to 'fluid/CMakeLists.txt')
| -rw-r--r-- | fluid/CMakeLists.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/fluid/CMakeLists.txt b/fluid/CMakeLists.txt index 9fc01bebe..6c7480e90 100644 --- a/fluid/CMakeLists.txt +++ b/fluid/CMakeLists.txt @@ -95,11 +95,21 @@ endif (WIN32) source_group("Header Files" FILES ${HEADERFILES}) +# make a group in the IDE for easy access to documentation files + +set ( DOC_FILES + Doxyfile + documentation/src/index.dox + documentation/src/code.dox + documentation/src/app_settings.dox +) +source_group("Documentation" FILES ${DOC_FILES}) + # Build a local object library to avoid compiling all source files # for all fluid targets (fluid, fluid-cmd, fluid-shared). This # library includes everything except the main program (fluid.cxx). -add_library (fluid-lib OBJECT EXCLUDE_FROM_ALL ${CPPFILES} ${HEADERFILES}) +add_library (fluid-lib OBJECT EXCLUDE_FROM_ALL ${CPPFILES} ${HEADERFILES} ${DOC_FILES}) # Build fluid with all its variants (fluid-cmd, fluid-shared) ... |
