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
repositories: | |
gazebo: | |
type: hg | |
url: https://bitbucket.org/osrf/gazebo | |
version: gazebo9 | |
ign-cmake: | |
type: hg | |
url: https://bitbucket.org/ignitionrobotics/ign-cmake | |
version: ign-cmake0 | |
ign-math: |
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
repositories: | |
ament/ament_cmake: | |
type: git | |
url: https://github.com/ament/ament_cmake.git | |
version: master | |
ament/ament_index: | |
type: git | |
url: https://github.com/ament/ament_index.git | |
version: master | |
ament/ament_lint: |
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
repositories: | |
ament/ament_cmake: | |
type: git | |
url: https://github.com/ament/ament_cmake.git | |
version: master | |
ament/ament_index: | |
type: git | |
url: https://github.com/ament/ament_index.git | |
version: master | |
ament/ament_lint: |
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
#!/usr/bin/env python3 | |
import os | |
import re | |
start = 1472688000 | |
end = 1475280000 | |
build_count = 0 | |
sum_duration = 0 | |
for job_name in os.listdir(): |
This file has been truncated, but you can view the full file.
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
1>------ Build started: Project: ZERO_CHECK, Configuration: Debug Win32 ------ | |
1>Build started 5/9/2016 10:09:55 AM. | |
1>Environment at start of build: | |
1>ALLUSERSPROFILE = C:\ProgramData | |
1>APPDATA = C:\Users\osrf\AppData\Roaming | |
1>APR_ICONV_PATH = C:\Program Files (x86)\Subversion\iconv | |
1>BOOST_LIBRARYDIR = C:\local\boost_1_59_0\lib64-msvc-14.0 | |
1>BOOST_ROOT = C:\local\boost_1_59_0 | |
1>ChocolateyInstall = C:\ProgramData\chocolatey | |
1>CommonProgramFiles = C:\Program Files (x86)\Common Files |
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
C:\dev\cmake_test2\build>cmake --build . | |
Microsoft (R) Build Engine version 14.0.24730.2 | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Build started 5/6/2016 12:53:35 PM. | |
The target "BeforeGenerateProjectPriFile" listed in a BeforeTargets attribute at "C:\Program Files (x86)\MSBuild\Mic | |
rosoft\NuGet\Microsoft.NuGet.targets (186,61)" does not exist in the project, and will be ignored. | |
The target "BeforeGenerateProjectPriFile" listed in a BeforeTargets attribute at "C:\Program Files (x86)\MSBuild\Mic | |
rosoft\NuGet\Microsoft.NuGet.targets (186,61)" does not exist in the project, and will be ignored. | |
Project "C:\dev\cmake_test2\build\ALL_BUILD.vcxproj" on node 1 (default targets). |
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
C:\dev\cmake_test\build>cmake --build . | |
Microsoft (R) Build Engine version 14.0.24730.2 | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Build started 5/6/2016 12:46:14 PM. | |
The target "BeforeGenerateProjectPriFile" listed in a BeforeTargets attribute at "C:\Program Files (x86)\MSBuild\Mic | |
rosoft\NuGet\Microsoft.NuGet.targets (186,61)" does not exist in the project, and will be ignored. | |
The target "BeforeGenerateProjectPriFile" listed in a BeforeTargets attribute at "C:\Program Files (x86)\MSBuild\Mic | |
rosoft\NuGet\Microsoft.NuGet.targets (186,61)" does not exist in the project, and will be ignored. | |
Project "C:\dev\cmake_test\build\ALL_BUILD.vcxproj" on node 1 (default targets). |
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
cmake_minimum_required(VERSION 3.4) | |
project(foo) | |
add_custom_target( | |
gen | |
SOURCES "${CMAKE_CURRENT_BINARY_DIR}/lib.cpp" | |
COMMENT "Custom 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
#include <cstdio> | |
#include <QtCore/qobject.h> | |
#include <QtWidgets/qaction.h> | |
#include <QtWidgets/qapplication.h> | |
#include <QtWidgets/qmainwindow.h> | |
#include <QtWidgets/qmenubar.h> | |
QMenu * more_menu = 0; |
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
import os | |
import re | |
for name in os.listdir('.'): | |
if not os.path.exists(name + '/revisions/00000002'): | |
continue | |
with open(name + '/revisions/00000001', 'r') as h: | |
content = h.read() | |
if re.search('quickbook', content, re.IGNORECASE): | |
continue |
NewerOlder