initial commit
This commit is contained in:
parent
c7abfe33d6
commit
60365877d6
2 changed files with 17 additions and 0 deletions
10
src/gui/CMakeLists.txt
Normal file
10
src/gui/CMakeLists.txt
Normal 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
7
src/gui/kima2.cpp
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
/* code */
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue