-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installer for Ubuntu #2213
base: master
Are you sure you want to change the base?
Installer for Ubuntu #2213
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2213 +/- ##
==========================================
- Coverage 70.5% 70.46% -0.05%
==========================================
Files 148 148
Lines 23919 23919
==========================================
- Hits 16865 16855 -10
- Misses 7054 7064 +10
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1, On output folder structure, can we keep the libs in a separate folder lib as we see in mac?
2, Are the files SparkEdge.ico and Spark.ico needed?. Is is used as part of ci?
CMakeLists.txt changes:
1, Move below lines inside glut flow, as it is the one applicable for desktop.
set(PXSCENE_LINKER_OPTIONS " /DEBUG ")
set(PXSCENE_INSTALLER 1)
2,Is it possible to use some other folder apart from /home folder, like /home/user , as some may not have permission on /home/Spark while generating tgz???
3,Below lines can be moved outside of rcvrcore installation out of duktape checks
install(DIRECTORY
"${CMAKE_CURRENT_SOURCE_DIR}/rcvrcore/" DESTINATION /home/Spark/rcvrcore COMPONENT pxscene)
file(GLOB PXSCENE_INSTALL_FILES_JS "${CMAKE_CURRENT_SOURCE_DIR}/*.js")`
4, Remove below files from installation as those files are not present.
a, LICENSE.txt
b, folder named Release
5, Below rules may copy json files in further child directories also. Can we have filenames specified specifially or someway to ignore sub-directory files.
"${CMAKE_CURRENT_SOURCE_DIR}/*.json"
"${CMAKE_CURRENT_SOURCE_DIR}/*.conf"
6, Is below INSTALL_RPATH or RPATH?
SET(RPATH ${PXSCENE_LINK_LIBRARIES})
7, Avoid two entries for ${CMAKE_CURRENT_SOURCE_DIR}/linux/spark.sh and also, is it possible to reuse existing spark.sh with some args
8, Please keep absolute file names for .js files installed.
9, how to generate TGZ and what will be contents of tgz file?
No description provided.