Skip to content

Commit ddd13cd

Browse files
committed
trimming out boost deps from README and CI pipeline
1 parent d57896a commit ddd13cd

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ addons:
3030
packages:
3131
- build-essential
3232
- cmake
33-
- libboost-dev
3433
- libcapstone-dev
3534
- libgraphviz-dev
3635
- libqt5svg5-dev

CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ if(TARGET_COMPILER_GCC AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS 5.0)
2222
message(FATAL_ERROR "Your g++ version is too old. At least 5.0 is required.")
2323
endif()
2424

25-
find_package(Boost 1.35 REQUIRED)
26-
include_directories(${Boost_INCLUDE_DIR})
27-
2825
find_package(Capstone REQUIRED)
2926
include_directories(${CAPSTONE_INCLUDE_DIRS})
3027
link_directories(${CAPSTONE_LIBRARY_DIRS})

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ Dependency | Version Required
4747
------------------------------------------- | ----------------
4848
GCC/Clang | Supporting C++17
4949
[Qt](http://www.qt.io/) | >= 5.9
50-
[Boost](http://boost.org) (Headers Only) | >= 1.35
5150
[Capstone](http://www.capstone-engine.org/) | >= 3.0
5251
[Graphviz](http://www.graphviz.org/) | >= 2.38.0 (Optional)
5352

appveyor.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ environment:
44
CAPSTONE_SDK: C:\capstone\sdk
55
matrix:
66
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
7-
BOOST_INCLUDEDIR: C:\Libraries\boost_1_64_0
87
CAPSTONE_ARCHIVE: capstone-3.0.5-rc2-win64
98
CMAKE_GENERATOR: Visual Studio 15 2017 Win64
109
QT_BASEDIR: C:\Qt\5.9\msvc2017_64
@@ -28,7 +27,7 @@ before_build:
2827
- cmd: cd C:\projects
2928
- cmd: md build
3029
- cmd: cd build
31-
- cmd: cmake -Wno-dev -G "%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=C:\projects\install -DBOOST_INCLUDEDIR="%BOOST_INCLUDEDIR%" -DCAPSTONE_SDK="%CAPSTONE_SDK%" -DQt5Core_DIR="%QT_BASEDIR%\lib\cmake\Qt5Core" -DQt5_DIR="%QT_BASEDIR%\lib\cmake\Qt5" ..\edb-debugger
30+
- cmd: cmake -Wno-dev -G "%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=C:\projects\install -DCAPSTONE_SDK="%CAPSTONE_SDK%" -DQt5Core_DIR="%QT_BASEDIR%\lib\cmake\Qt5Core" -DQt5_DIR="%QT_BASEDIR%\lib\cmake\Qt5" ..\edb-debugger
3231

3332
build_script:
3433
- cmd: msbuild C:\projects\build\edb.sln /t:edb /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"

0 commit comments

Comments
 (0)