Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Aircraft Design
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNICADO
Aircraft Design
Commits
e0887a15
Commit
e0887a15
authored
4 months ago
by
Florian Schültke
Browse files
Options
Downloads
Patches
Plain Diff
aerodynamic_analysis (schueltke): automatic LILI download
parent
e6638194
No related branches found
Branches containing commit
No related tags found
Tags containing commit
5 merge requests
!263
Apply 1 suggestion(s) to 1 file(s)
,
!261
Reintruduced automatic flight condition selection
,
!245
Apply 1 suggestion(s) to 1 file(s)
,
!233
Initial open source version
,
!39
aerodynamic_analysis (schueltke): automatic LILI download
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aerodynamic_analysis/CMakeLists.txt
+4
-0
4 additions, 0 deletions
aerodynamic_analysis/CMakeLists.txt
aerodynamic_analysis/LiftingLine/CMakeLists.txt
+47
-0
47 additions, 0 deletions
aerodynamic_analysis/LiftingLine/CMakeLists.txt
with
51 additions
and
0 deletions
aerodynamic_analysis/CMakeLists.txt
+
4
−
0
View file @
e0887a15
...
...
@@ -65,6 +65,9 @@ if(BUILD_UNITTEST)
add_subdirectory
(
test
)
endif
()
# Download LiftingLine
add_subdirectory
(
LiftingLine
)
# Add the installation rules
install
(
TARGETS
${
MODULE_NAME
}
DESTINATION
${
MODULE_NAME
}
)
install
(
FILES
...
...
@@ -75,6 +78,7 @@ install(FILES
install
(
DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
/LiftingLine
DESTINATION
${
MODULE_NAME
}
PATTERN
"*CMakeLists*"
EXCLUDE
)
# Find and include all dependet libraries if dynamically linked
...
...
This diff is collapsed.
Click to expand it.
aerodynamic_analysis/LiftingLine/CMakeLists.txt
0 → 100644
+
47
−
0
View file @
e0887a15
# Set the project name
project
(
LiftingLine
)
# Check operating system
message
(
STATUS
"Check operating system for Lifting Line download uri ->
${
CMAKE_SYSTEM_NAME
}
"
)
if
(
CMAKE_SYSTEM_NAME STREQUAL
"Windows"
)
# set download URL
set
(
FILE_URL
"https://ceras.ilr.rwth-aachen.de/tiki/tiki-download_file.php?fileId=74"
)
# set output file
set
(
OUTPUT_FILE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/LIFTING_LINE_WINDOWS_64BIT.exe"
)
else
()
# set download URL
set
(
FILE_URL
"https://ceras.ilr.rwth-aachen.de/tiki/tiki-download_file.php?fileId=76"
)
# set output file
set
(
OUTPUT_FILE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/LIFTING_LINE_LINUX_64BIT"
)
endif
()
# Check if the file exists
if
(
NOT EXISTS
${
OUTPUT_FILE
}
)
# Download file
message
(
STATUS
"Downloading Lifting Line ..."
)
file
(
DOWNLOAD
${
FILE_URL
}
${
OUTPUT_FILE
}
SHOW_PROGRESS
STATUS DOWNLOAD_STATUS
)
# Check download status status
list
(
GET DOWNLOAD_STATUS 0 STATUS_CODE
)
list
(
GET DOWNLOAD_STATUS 1 STATUS_MESSAGE
)
# Print the result of download status
if
(
STATUS_CODE EQUAL 0
)
message
(
STATUS
"File downloaded
${
STATUS_MESSAGE
}
->
${
OUTPUT_FILE
}
"
)
# Update file rights on none windows systems
if
(
NOT CMAKE_SYSTEM_NAME STREQUAL
"Windows"
)
message
(
STATUS
"Changing file rights to --xr--r--"
)
file
(
CHMOD
${
OUTPUT_FILE
}
FILE_PERMISSIONS OWNER_EXECUTE GROUP_READ WORLD_READ
)
endif
()
else
()
message
(
FATAL_ERROR
"Download failed with message:
${
STATUS_MESSAGE
}
"
)
endif
()
else
()
message
(
STATUS
"File already exists ->
${
OUTPUT_FILE
}
, skipping download."
)
endif
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment