mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 04:07:46 +00:00
Fix qml not found caused by directory rearranging
This commit is contained in:
parent
0f83276de3
commit
83be40cce1
2 changed files with 4 additions and 2 deletions
|
@ -3,7 +3,9 @@ add_subdirectory(cli)
|
||||||
add_subdirectory(desktop)
|
add_subdirectory(desktop)
|
||||||
add_subdirectory(tablet)
|
add_subdirectory(tablet)
|
||||||
|
|
||||||
add_executable(astra main.cpp)
|
add_executable(astra
|
||||||
|
main.cpp
|
||||||
|
tablet/qml/qml.qrc)
|
||||||
|
|
||||||
target_link_libraries(astra PUBLIC
|
target_link_libraries(astra PUBLIC
|
||||||
${LIBRARIES}
|
${LIBRARIES}
|
||||||
|
|
|
@ -4,7 +4,7 @@ set(HEADERS
|
||||||
set(SRC
|
set(SRC
|
||||||
src/tabletinterface.cpp)
|
src/tabletinterface.cpp)
|
||||||
|
|
||||||
add_library(astra_tablet STATIC ${HEADERS} ${SRC} qml/qml.qrc)
|
add_library(astra_tablet STATIC ${HEADERS} ${SRC})
|
||||||
target_include_directories(astra_tablet PUBLIC include)
|
target_include_directories(astra_tablet PUBLIC include)
|
||||||
target_link_libraries(astra_tablet PUBLIC
|
target_link_libraries(astra_tablet PUBLIC
|
||||||
astra_core
|
astra_core
|
||||||
|
|
Loading…
Add table
Reference in a new issue