summaryrefslogtreecommitdiff
path: root/README.md
blob: 07423b99c3aa97afe191654e3f09308d6e52b66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# goodies
Some good snippets for qt

# per-project usage

## qmake

Add this to your .pro-file:

```pro
include(path_to_this_repo/goodies.pri)
```

## cmake

```cmake
add_subdirectory(goodies)
...
target_link_libraries(${PROJECT_NAME}
    PRIVATE
        ...
        Qt::Widgets
        goodies
)
```