Skip to content

Commit 9d820d9

Browse files
committed
Merge branch 'linux' of https://github.com/q4a/xray-16 into linux
2 parents a96b640 + 887a253 commit 9d820d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+37
-35
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ addons:
2222
- ubuntu-toolchain-r-test
2323
packages:
2424
- g++-7
25-
branches:
26-
only:
27-
- linux
28-
- xd_dev
29-
- "/^v\\d+\\./"
25+
#branches:
26+
# only:
27+
# - linux
28+
# - xd_dev
29+
# - "/^v\\d+\\./"
3030
notifications:
3131
email: false
3232
env:

Externals/libogg

Submodule libogg updated 82 files

Externals/libvorbis

Submodule libvorbis updated 118 files

doc/howto/build-linux.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ TITLE: X-Ray 1.6 build and setup on Linux
22

33
Required packages:
44
------
5+
TBB
56
Crypto++
67
pugixml
78
Theora
@@ -12,7 +13,7 @@ JPEG
1213

1314

1415
Ubuntu 18.04 build dependencies:
15-
sudo apt install git cmake libcrypto++-dev libpugixml-dev libogg-dev libtheora-dev libvorbis-dev libsdl2-dev liblzo2-dev libjpeg-dev libncurses5-dev
16+
sudo apt install git cmake libtbb-dev libcrypto++-dev libpugixml-dev libogg-dev libtheora-dev libvorbis-dev libsdl2-dev liblzo2-dev libjpeg-dev libncurses5-dev
1617

1718
Build commands:
1819
------

doc/howto/build.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ the src\Externals directory.
1111
Windows SDK is available from Visual Studio 2017 installer. You will definitely need to install the following items:
1212
* Windows 8.1 SDK (or newer)
1313
* Visual C++ MFC for x86 and x64
14+
* C++/CLI support
1415
* NuGet package manager
1516

1617
You will need following extension to save files in Visual Studio with encoding UTF-8 without BOM:

src/xrCore/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ add_definitions(-DXRCORE_EXPORTS)
2222
add_library(${PROJECT_NAME} SHARED ${${PROJECT_NAME}__SOURCES} ${${PROJECT_NAME}__INCLUDES})
2323

2424
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")
25-
#Заглушки, пока не починю find_package
25+
#this is a temporary solution until find_package will not be fixed
2626
set(CRYPTO_LIBRARY crypto++)
2727
set(PUGIXML_LIBRARY pugixml)
2828
set(TBB_LIBRARIES tbb tbbmalloc_proxy tbbmalloc)
File renamed without changes.

src/xrNetServer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include_directories(
1111
${CMAKE_CURRENT_SOURCE_DIR}/../../sdk/include
1212
)
1313

14-
#list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/tri-colliderKNoOPC/dcTriListCollider.cpp")
14+
#list(REMOVE_ITEM ${PROJECT_NAME}__SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/tri-colliderknoopc/dcTriListCollider.cpp")
1515
#list(REMOVE_ITEM ${PROJECT_NAME}__INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/./xr_cda.h")
1616

1717
add_definitions(-DXRNETSERVER_EXPORTS)

0 commit comments

Comments
 (0)