NOISSUE fix some small build issues
This commit is contained in:
parent
27f276ef13
commit
7b4c52e1e3
@ -1,5 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.1)
|
||||
|
||||
if(WIN32)
|
||||
# In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows
|
||||
cmake_policy(SET CMP0020 OLD)
|
||||
endif()
|
||||
|
||||
project(Launcher)
|
||||
enable_testing()
|
||||
|
||||
string(COMPARE EQUAL "${CMAKE_SOURCE_DIR}" "${CMAKE_BUILD_DIR}" IS_IN_SOURCE_BUILD)
|
||||
if(IS_IN_SOURCE_BUILD)
|
||||
message(FATAL_ERROR "You are building the Launcher in-source. Please separate the build tree from the source tree.")
|
||||
@ -13,14 +21,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
# In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows
|
||||
cmake_policy(SET CMP0020 OLD)
|
||||
endif()
|
||||
|
||||
project(Launcher)
|
||||
enable_testing()
|
||||
|
||||
|
||||
##################################### Set CMake options #####################################
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
@ -12,7 +12,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual bool matches(const QString &string) const override
|
||||
bool matches(const QString &string) const override
|
||||
{
|
||||
return m_fsTree.covers(string);
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include <memory>
|
||||
#include <QString>
|
||||
|
||||
class IPathMatcher
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user