A module for gathering code related to visibility automation and the like. Contains DepGraphTools.py and TempoVis.py, to be withdrawn from Part/AttachmentEditor. Also: changes to TempoVis: * keep TempoVis from from raising (TempoVis is non-essential functionality, so breaking execution of unsuspecting routines that use it seems like a bad idea. * implement saving/restoring camera (Unfortunately, I failed to implement nice animated restoration.) * almost proper support of saving to file (I still couldn't figure out a way to restore reference to document and viewer. So, falling to using active ones instead (might cause bugs).)
21 lines
315 B
CMake
21 lines
315 B
CMake
|
|
SET(Show_SRCS
|
|
__init__.py
|
|
DepGraphTools.py
|
|
FrozenClass.py
|
|
TempoVis.py
|
|
)
|
|
|
|
SOURCE_GROUP("" FILES ${Show_SRCS})
|
|
|
|
ADD_CUSTOM_TARGET(Show ALL
|
|
SOURCES ${Show_SRCS}
|
|
)
|
|
|
|
fc_copy_sources(Show "${CMAKE_BINARY_DIR}/Mod/Show" ${Show_SRCS})
|
|
|
|
INSTALL(
|
|
FILES
|
|
${Show_SRCS}
|
|
DESTINATION Mod/Show
|
|
) |