Skip to content

Commit fbeb203

Browse files
committed
Merge branch 'master' into develop
2 parents 44f8b39 + 11a5f35 commit fbeb203

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,6 @@ out/
9494
#################
9595
Docs/~$Capability Matrix.xlsx
9696
*.xpl
97+
*.egg-info
98+
build
99+
dist

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
setup(
5+
name="xplaneconnect",
6+
version="1.3rc6",
7+
python_requires=">=3",
8+
packages=find_packages("Python3/src"),
9+
package_dir={"": "Python3/src"},
10+
description="XPlaneConnect (XPC) facilitates communication to and from the XPCPlugin. Note: To use the XPC package, you must first install the XPCPlugin. See https://github.com/nasa/XPlaneConnect/wiki/Getting-Started for instructions on installing the XPCPlugin",
11+
url="https://github.com/nasa/XPlaneConnect/",
12+
project_urls={
13+
"Bug Reports": "https://github.com/nasa/xplaneconnect/issues",
14+
"Organization": "https://www.nasa.gov/content/diagnostics-prognostics",
15+
"Source": "https://github.com/nasa/xplaneconnect",
16+
"Documentation": "https://github.com/nasa/XPlaneConnect/wiki"
17+
}
18+
)

xpcPlugin/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SET(XPC_OUTPUT_DIR "XPlaneConnect")
1616
SET(XPC_OUTPUT_NAME "lin")
1717

1818
add_library(xpc64 SHARED XPCPlugin.cpp
19+
CameraCallbacks.cpp
1920
DataManager.cpp
2021
Drawing.cpp
2122
Log.cpp
@@ -29,6 +30,7 @@ set_target_properties(xpc64 PROPERTIES OUTPUT_NAME ${XPC_OUTPUT_NAME})
2930
set_target_properties(xpc64 PROPERTIES COMPILE_FLAGS "-m64 -fno-stack-protector" LINK_FLAGS "-shared -rdynamic -nodefaultlibs -undefined_warning -m64 -fno-stack-protector")
3031

3132
add_library(xpc32 SHARED XPCPlugin.cpp
33+
CameraCallbacks.cpp
3234
DataManager.cpp
3335
Drawing.cpp
3436
Log.cpp

0 commit comments

Comments
 (0)