project: added project skeleton

Skeleton includes emtpy implementations of application class structure.
Source groups were added to CMakeLists to define filters in Visual Studio.
This commit is contained in:
Eberhard Graether
2014-03-31 17:59:52 +02:00
parent b5f91e62fa
commit d4e3433e5d
72 changed files with 957 additions and 57 deletions
+2 -2
View File
@@ -15,9 +15,9 @@ macro(add_files var_name)
foreach (_src ${ARGN})
if (_relPath)
list (APPEND ${var_name} "${CMAKE_SOURCE_DIR}/${_relPath}/${_src}")
list (APPEND ${var_name} "${_relPath}/${_src}")
else()
list (APPEND ${var_name} "${CMAKE_SOURCE_DIR}/${_src}")
list (APPEND ${var_name} "${_src}")
endif()
endforeach()