rewrote the opencs cmake scripts (more compact and no more annoying warnings)

actorid
Marc Zinnschlag 12 years ago
parent d6a73a2a02
commit a4872e3217

@ -1,46 +1,75 @@
set (OPENCS_SRC set (OPENCS_SRC main.cpp)
main.cpp editor.cpp
model/doc/documentmanager.cpp model/doc/document.cpp opencs_units (. editor)
model/world/universalid.cpp model/world/idcollection.cpp model/world/data.cpp model/world/idtable.cpp
model/world/commands.cpp model/world/idtableproxymodel.cpp model/world/record.cpp
model/world/columnbase.cpp
model/tools/tools.cpp model/tools/operation.cpp model/tools/stage.cpp model/tools/verifier.cpp opencs_units (model/doc
model/tools/mandatoryid.cpp model/tools/reportmodel.cpp document
)
opencs_units_noqt (model/doc
documentmanager
)
opencs_hdrs_noqt (model/doc
state
)
view/doc/viewmanager.cpp view/doc/view.cpp view/doc/operations.cpp view/doc/operation.cpp view/doc/subviewfactory.cpp opencs_units (model/world
view/doc/subview.cpp idtable idtableproxymodel
)
view/world/table.cpp view/world/tablesubview.cpp view/world/subviews.cpp view/world/util.cpp opencs_units_noqt (model/world
view/world/dialoguesubview.cpp universalid data record idcollection commands columnbase
)
view/tools/reportsubview.cpp view/tools/subviews.cpp opencs_hdrs_noqt (model/world
columns
) )
set (OPENCS_HDR
editor.hpp
model/doc/documentmanager.hpp model/doc/document.hpp model/doc/state.hpp opencs_units (model/tools
tools operation reportmodel
)
model/world/universalid.hpp model/world/record.hpp model/world/idcollection.hpp model/world/data.hpp opencs_units_noqt (model/tools
model/world/idtable.hpp model/world/columns.hpp model/world/idtableproxymodel.hpp stage verifier mandatoryid
model/world/commands.hpp model/world/columnbase.hpp )
model/tools/tools.hpp model/tools/operation.hpp model/tools/stage.hpp model/tools/verifier.hpp
model/tools/mandatoryid.hpp model/tools/reportmodel.hpp
view/doc/viewmanager.hpp view/doc/view.hpp view/doc/operations.hpp view/doc/operation.hpp view/doc/subviewfactory.hpp opencs_units (view/doc
view/doc/subview.hpp view/doc/subviewfactoryimp.hpp viewmanager view operations operation subview
)
view/world/table.hpp view/world/tablesubview.hpp view/world/subviews.hpp view/world/util.hpp opencs_units_noqt (view/doc
view/world/dialoguesubview.hpp subviewfactory
)
view/tools/reportsubview.hpp view/tools/subviews.hpp opencs_hdrs_noqt (view/doc
subviewfactoryimp
) )
opencs_units (view/world
table tablesubview
)
opencs_units_noqt (view/world
dialoguesubview util subviews
)
opencs_units (view/tools
reportsubview
)
opencs_units_noqt (view/tools
subviews
)
set (OPENCS_US set (OPENCS_US
) )
@ -57,7 +86,7 @@ find_package(Qt4 COMPONENTS QtCore QtGui QtXml QtXmlPatterns REQUIRED)
include(${QT_USE_FILE}) include(${QT_USE_FILE})
qt4_wrap_ui(OPENCS_UI_HDR ${OPENCS_UI}) qt4_wrap_ui(OPENCS_UI_HDR ${OPENCS_UI})
qt4_wrap_cpp(OPENCS_MOC_SRC ${OPENCS_HDR}) qt4_wrap_cpp(OPENCS_MOC_SRC ${OPENCS_HDR_QT})
qt4_add_resources(OPENCS_RES_SRC ${OPENCS_RES}) qt4_add_resources(OPENCS_RES_SRC ${OPENCS_RES})
include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(${CMAKE_CURRENT_BINARY_DIR})

@ -29,3 +29,51 @@ get_filename_component(filename ${f} NAME)
configure_file(${source_dir}/${f} ${destination_dir}/${filename} COPYONLY) configure_file(${source_dir}/${f} ${destination_dir}/${filename} COPYONLY)
endforeach (f) endforeach (f)
endmacro (copy_all_files) endmacro (copy_all_files)
macro (add_file project type file)
list (APPEND ${project}${type} ${file})
endmacro (add_file)
macro (add_unit project dir unit)
add_file (${project} _HDR ${comp} "${dir}/${unit}.hpp")
add_file (${project} _SRC ${comp} "${dir}/${unit}.cpp")
endmacro (add_unit)
macro (add_qt_unit project dir unit)
add_file (${project} _HDR ${comp} "${dir}/${unit}.hpp")
add_file (${project} _HDR_QT ${comp} "${dir}/${unit}.hpp")
add_file (${project} _SRC ${comp} "${dir}/${unit}.cpp")
endmacro (add_qt_unit)
macro (add_hdr project dir unit)
add_file (${project} _HDR ${comp} "${dir}/${unit}.hpp")
endmacro (add_hdr)
macro (add_qt_hdr project dir unit)
add_file (${project} _HDR ${comp} "${dir}/${unit}.hpp")
add_file (${project} _HDR_QT ${comp} "${dir}/${unit}.hpp")
endmacro (add_qt_hdr)
macro (opencs_units dir)
foreach (u ${ARGN})
add_qt_unit (OPENCS ${dir} ${u})
endforeach (u)
endmacro (opencs_units)
macro (opencs_units_noqt dir)
foreach (u ${ARGN})
add_unit (OPENCS ${dir} ${u})
endforeach (u)
endmacro (opencs_units)
macro (opencs_hdrs dir)
foreach (u ${ARGN})
add_qt_hdr (OPENCS ${dir} ${u})
endforeach (u)
endmacro (opencs_hdrs)
macro (opencs_hdrs_noqt dir)
foreach (u ${ARGN})
add_hdr (OPENCS ${dir} ${u})
endforeach (u)
endmacro (opencs_hdrs)

Loading…
Cancel
Save