aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/silversearcher/silversearcherplugin.cpp
blob: 1f143407d786340e8f0295716580c347676da349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2017 Przemyslaw Gorszkowski <pgorszkowski@gmail.com>.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "findinfilessilversearcher.h"
#include "silversearcherparser_test.h"
#include "silversearcherplugin.h"

namespace SilverSearcher::Internal {

void SilverSearcherPlugin::initialize()
{
    new FindInFilesSilverSearcher(this);

#ifdef WITH_TESTS
    addTest<OutputParserTest>();
#endif
}

} // SilverSearcher::Internal