initial commit

This commit is contained in:
Martin Brodbeck 2018-07-06 10:54:22 +02:00
parent c7abfe33d6
commit 60365877d6
2 changed files with 17 additions and 0 deletions

10
src/gui/CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
set(GUI_HEADERS
)
set(GUI_SOURCES
kima2.cpp
)
add_executable(kima2 ${GUI_SOURCES})
target_link_libraries(kima2 core)

7
src/gui/kima2.cpp Normal file
View File

@ -0,0 +1,7 @@
int main()
{
/* code */
return 0;
}