Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed kebab casing of previous appwindow.slint. #1

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion cppSlint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set(DEFAULT_SLINT_EMBED_RESOURCES "embed-files")

add_executable(__change__ src/main.cpp)
target_link_libraries(__change__ PRIVATE Slint::Slint)
slint_target_sources(__change__ ui/appwindow.slint)
slint_target_sources(__change__ ui/app-window.slint)
# On Windows, copy the Slint DLL next to the application binary so that it's found.
if (WIN32)
add_custom_command(TARGET __change__ POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_RUNTIME_DLLS:__change__> $<TARGET_FILE_DIR:__change__> COMMAND_EXPAND_LISTS)
Expand Down
2 changes: 1 addition & 1 deletion cppSlint/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "appwindow.h"
#include "app-window.h"

#include <iostream>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rustSlint/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
slint_build::compile("ui/appwindow.slint").unwrap();
slint_build::compile("ui/app-window.slint").unwrap();
}
File renamed without changes.