mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 15:47:26 +00:00
Fixed kebab casing of previous appwindow.slint
.
This commit is contained in:
parent
844590cac8
commit
9894eca229
25 changed files with 33 additions and 33 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
add_executable(libraries main.cpp)
|
||||
target_link_libraries(libraries PRIVATE Slint::Slint)
|
||||
slint_target_sources(libraries appwindow.slint
|
||||
slint_target_sources(libraries app-window.slint
|
||||
LIBRARY_PATHS
|
||||
helper_components=${CMAKE_CURRENT_SOURCE_DIR}/../../../../tests/helper_components/
|
||||
helper_buttons=${CMAKE_CURRENT_SOURCE_DIR}/../../../../tests/helper_components/test_button.slint
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
||||
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
||||
|
||||
#include "appwindow.h"
|
||||
#include "app-window.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
|
||||
add_executable(multiple-includes main.cpp logic.cpp)
|
||||
target_link_libraries(multiple-includes PRIVATE Slint::Slint)
|
||||
slint_target_sources(multiple-includes appwindow.slint COMPILATION_UNITS 0)
|
||||
slint_target_sources(multiple-includes app-window.slint COMPILATION_UNITS 0)
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
||||
|
||||
#include "logic.h"
|
||||
#include "appwindow.h"
|
||||
#include "app-window.h"
|
||||
// Test that it's ok to include twice
|
||||
#include "appwindow.h"
|
||||
#include "app-window.h"
|
||||
|
||||
void setup_logic(const Logic &logic)
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
||||
|
||||
#include "logic.h"
|
||||
#include "appwindow.h"
|
||||
#include "app-window.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue