Move source code to src/ dir
This commit is contained in:
parent
8388a45d74
commit
c710d0d1b3
|
@ -19,15 +19,20 @@ qt_add_executable(appSolitare
|
||||||
qml.qrc
|
qml.qrc
|
||||||
)
|
)
|
||||||
|
|
||||||
|
file(GLOB_RECURSE SOURCES
|
||||||
|
src/*.cpp
|
||||||
|
src/*.h
|
||||||
|
)
|
||||||
|
|
||||||
qt_add_qml_module(appSolitare
|
qt_add_qml_module(appSolitare
|
||||||
URI Solitare
|
URI Solitare
|
||||||
VERSION 1.0
|
VERSION 1.0
|
||||||
SOURCES
|
SOURCES
|
||||||
playingcard.h playingcard.cpp
|
${SOURCES}
|
||||||
gamestate.h gamestate.cpp
|
|
||||||
columnslot.h columnslot.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
target_include_directories(appSolitare PRIVATE ${CMAKE_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
|
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
|
||||||
# If you are developing for iOS or macOS you should consider setting an
|
# If you are developing for iOS or macOS you should consider setting an
|
||||||
# explicit, fixed bundle identifier manually though.
|
# explicit, fixed bundle identifier manually though.
|
||||||
|
|
Loading…
Reference in a new issue