
Let's have it as it's common to be, which means top level src/ for sources, single data/ for data, and so on.
18 lines
276 B
CMake
18 lines
276 B
CMake
set(SOURCEDIRS
|
|
${CMAKE_SOURCE_DIR}/src/shell
|
|
)
|
|
|
|
set(DEPENDENCIES
|
|
email-engine
|
|
evolution-util
|
|
evolution-shell
|
|
)
|
|
|
|
set(IGNORE_HEADERS
|
|
evo-version.h
|
|
e-shell-window-private.h
|
|
e-shell-enumtypes.h
|
|
)
|
|
|
|
add_gtkdoc(evolution-shell shell "" SOURCEDIRS DEPENDENCIES IGNORE_HEADERS)
|