Skip to content

Commit 5ac1d93

Browse files
committed
added missing subdirectory for qt
1 parent b5e6004 commit 5ac1d93

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

src/qt/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FIND_PACKAGE(QT6 REQUIRED)
2+
3+
ADD_EXECUTABLE(test_qt main.cpp)
4+
TARGET_LINK_LIBRARIES(test_qt PRIVATE ${CMAKE_THREAD_LIBS_INIT} qt::qt)

src/qt/main.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
3+
int main()
4+
{
5+
return 0;
6+
}

0 commit comments

Comments
 (0)