Unknown (no "created by" field) 91 16 73 2 18 (hdreactor.org) 1 1 Azureus/2.5.0.0 1 1 Azureus/4.7.0.2 16 1 9 15 Azureus/4.7.1.2 7 3 3 4 BitComet/0.56 40 40 BitComet/0.57 10 10
This file contains hidden or 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
#---------------------------------------------------------------- | |
# Generated CMake target import file for configuration "RelWithDebInfo". | |
#---------------------------------------------------------------- | |
# Commands may need to know the format version. | |
set(CMAKE_IMPORT_FILE_VERSION 1) | |
# Import target "Poco::Foundation" for configuration "RelWithDebInfo" | |
set_property(TARGET Poco::Foundation APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) | |
set_target_properties(Poco::Foundation PROPERTIES |
This file contains hidden or 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
@echo off | |
setlocal | |
setlocal enabledelayedexpansion | |
set R=%CD% | |
set EXPATVER=2.1.0 | |
set DBUSVER=1.10.6 | |
set ZLIBVER=1.2.8 |
This file contains hidden or 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
param( | |
[Parameter(Mandatory=$True)] [String] $SourceDir, | |
[Parameter(Mandatory=$True)] [String] $OldRevision, | |
[Parameter(Mandatory=$True)] [String] $NewRevision | |
) | |
$SourceDir = (Get-Item $SourceDir).FullName | |
$BuildDir = (Get-Item .).FullName | |
$BuildConfig = 'RelWithDebInfo' |
This file contains hidden or 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
cmake_minimum_required(VERSION 3.0) | |
project(freetype_harfbuzz) | |
message(STATUS "-------------------------------------------------------------------") | |
execute_process( | |
COMMAND git init . | |
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) | |
execute_process( |
This file contains hidden or 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
cmake_minimum_required(VERSION 3.16 FATAL_ERROR) | |
project(test_pch LANGUAGES CXX) | |
add_library(test_pch STATIC | |
test_pch.cpp) | |
target_precompile_headers(test_pch | |
PRIVATE | |
test_pch.h) |
This file contains hidden or 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
function(print_all_targets DIR) | |
get_property(TGTS DIRECTORY "${DIR}" PROPERTY BUILDSYSTEM_TARGETS) | |
foreach(TGT IN LISTS TGTS) | |
message(STATUS "Target: ${TGT}") | |
# TODO: Do something about it | |
endforeach() | |
get_property(SUBDIRS DIRECTORY "${DIR}" PROPERTY SUBDIRECTORIES) | |
foreach(SUBDIR IN LISTS SUBDIRS) | |
print_all_targets("${SUBDIR}") |