Skip to content

Commit 3fe83c0

Browse files
committed
refactor(desktop): make * default implicitly
1 parent 383bea7 commit 3fe83c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.25)
2-
project(saucer-desktop LANGUAGES CXX VERSION 4.1.0)
2+
project(saucer-desktop LANGUAGES CXX VERSION 4.2.0)
33

44
# --------------------------------------------------------------------------------------------------------
55
# Setup Library
@@ -46,7 +46,7 @@ saucer_add_module(${PROJECT_NAME})
4646
# Setup Sources
4747
# --------------------------------------------------------------------------------------------------------
4848

49-
target_sources(${PROJECT_NAME} PRIVATE
49+
target_sources(${PROJECT_NAME} PRIVATE
5050
"src/desktop.cpp"
5151
)
5252

@@ -64,7 +64,7 @@ endif()
6464

6565
if (saucer_backend STREQUAL "WebKit")
6666
enable_language(OBJCXX)
67-
67+
6868
file(GLOB cocoa_sources
6969
"src/cocoa.*mm"
7070
)

include/saucer/modules/desktop.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace saucer::modules
2929
struct options
3030
{
3131
std::optional<fs::path> initial;
32-
std::set<std::string> filters{"*"};
32+
std::set<std::string> filters;
3333
};
3434

3535
template <type>

0 commit comments

Comments
 (0)