Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions companion/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ add_subdirectory(simulation)
add_subdirectory(storage)
add_subdirectory(thirdparty/qcustomplot)
add_subdirectory(updates)
add_subdirectory(wizard)

############# Companion ###############

Expand Down Expand Up @@ -233,8 +234,6 @@ set(companion_NAMES
radionotfound
splashlibrarydialog
styleeditdialog
wizarddata
wizarddialog
dialogs/filesyncdialog
)

Expand Down Expand Up @@ -278,6 +277,7 @@ target_link_libraries(${COMPANION_NAME} PRIVATE
qcustomplot
miniz
updates
wizard
)

PrintTargetReport("${COMPANION_NAME}")
Expand Down
2 changes: 1 addition & 1 deletion companion/src/mdichild.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "printdialog.h"
#include "helpers.h"
#include "appdata.h"
#include "wizarddialog.h"
#include "wizard/wizarddialog.h"
#include "flashfirmwaredialog.h"
#include "storage.h"
#include "radiointerface.h"
Expand Down
37 changes: 37 additions & 0 deletions companion/src/wizard/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

project(wizard)

set(${PROJECT_NAME}_NAMES
wizarddata
wizarddialog
)

AddHeadersSources()

# AUTOMOC does not detect so manually process
set(${PROJECT_NAME}_MOC
wizarddata.h
wizarddialog.h
)

qt_wrap_cpp(${PROJECT_NAME}_SRCS
${${PROJECT_NAME}_MOC}
)

add_library(${PROJECT_NAME}
${${PROJECT_NAME}_HDRS}
${${PROJECT_NAME}_SRCS}
)

target_link_libraries(${PROJECT_NAME}
PRIVATE
${CPN_COMMON_LIB}
)

target_include_directories(${PROJECT_NAME}
PRIVATE
"${CMAKE_SOURCE_DIR}"
"${CMAKE_CURRENT_BINARY_DIR}"
PUBLIC
"${CMAKE_CURRENT_LIST_DIR}"
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading