Skip to content

Commit

Permalink
removing more "X.h" -> <wdt/X.h> and misc
Browse files Browse the repository at this point in the history
Summary: removing more "X.h" -> <wdt/X.h>
fix travis build
one less file at top level
add travis status to README.md

Reviewed By: nikunjy

Differential Revision: D2573985

fb-gh-sync-id: df02453fa1cbfacc8d73e6efdaaaabc018b26aab
  • Loading branch information
ldemailly committed Oct 23, 2015
1 parent b86b77d commit 98c4cc1
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${FOLLY_SOURCE_DIR})
include_directories(${GLOG_INCLUDE_DIR})
include_directories(${GFLAGS_INCLUDE_DIR})
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)

add_executable(wdt wdtCmdLine.cpp util/WdtFlags.cpp)
set_target_properties(wdt PROPERTIES COMPILE_DEFINITIONS "STANDALONE_APP")
Expand Down
2 changes: 1 addition & 1 deletion ErrorCodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "ErrorCodes.h"
#include <wdt/ErrorCodes.h>
#include <folly/Conv.h>
#include <string.h>

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
![](wdt_logo.png)
![](build/wdt_logo.png)
`WDT` Warp speed Data Transfer
------------------------------

[![Join the chat at https://gitter.im/facebook/wdt](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/facebook/wdt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[![Build Status](https://travis-ci.org/facebook/wdt.svg?branch=master)](https://travis-ci.org/facebook/wdt)

## Design philosophy/Overview

Goal:
Expand Down
4 changes: 2 additions & 2 deletions Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "Reporting.h"
#include "WdtOptions.h"
#include <wdt/Reporting.h>
#include <wdt/WdtOptions.h>
#include <folly/String.h>

#include <iostream>
Expand Down
4 changes: 2 additions & 2 deletions Reporting.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*/
#pragma once

#include "ErrorCodes.h"
#include "WdtOptions.h"
#include <wdt/ErrorCodes.h>
#include <wdt/WdtOptions.h>

#include <vector>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion SourceQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include <memory>

#include "ByteSource.h"
#include <wdt/ByteSource.h>

namespace facebook {
namespace wdt {
Expand Down
6 changes: 3 additions & 3 deletions Throttler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "Throttler.h"
#include "ErrorCodes.h"
#include "WdtOptions.h"
#include <wdt/Throttler.h>
#include <wdt/ErrorCodes.h>
#include <wdt/WdtOptions.h>
#include <cmath>

namespace facebook {
Expand Down
2 changes: 1 addition & 1 deletion Throttler.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
#pragma once
#include "Reporting.h"
#include <wdt/Reporting.h>
#include <folly/Synchronized.h>
#include <thread>
#include <glog/logging.h>
Expand Down
3 changes: 2 additions & 1 deletion WdtOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "WdtOptions.h"
#include <wdt/WdtOptions.h>
#include <glog/logging.h>

namespace facebook {
namespace wdt {

Expand Down
2 changes: 1 addition & 1 deletion Writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/
#pragma once

#include "ErrorCodes.h"
#include <wdt/ErrorCodes.h>

namespace facebook {
namespace wdt {
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion util/SerializationUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "SerializationUtil.h"
#include <wdt/util/SerializationUtil.h>
#include <folly/Varint.h>

namespace facebook {
Expand Down

0 comments on commit 98c4cc1

Please sign in to comment.