This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (WIN32) | |
find_package(Qt6Core REQUIRED) | |
# get absolute path to qmake, then use it to find windeployqt executable | |
get_target_property(_qmake_executable Qt6::qmake IMPORTED_LOCATION) | |
get_filename_component(_qt_bin_dir "${_qmake_executable}" DIRECTORY) | |
endif() | |
function(windeployqt target) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let blacklists = ["https://www.kongregate.com/*"] | |
set numerichints | |
set typelinkhints | |
let barposition = "bottom" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef TESTRUNNER_H | |
#define TESTRUNNER_H | |
// std includes | |
#include <algorithm> | |
#include <functional> | |
#include <iostream> | |
#include <list> | |
#include <iterator> |