nasa / CryptoLib

Provide a software-only solution using the CCSDS Space Data Link Security Protocol - Extended Procedures (SDLS-EP) to secure communications between a spacecraft running the core Flight System (cFS) and a ground station.
Other
66 stars 25 forks source link

Fix custom module paths #249

Closed williamposey closed 3 weeks ago

williamposey commented 3 weeks ago

The custom module path variables in CMakeLists.txt should be directly referenced, rather than their values. For example, the value of KEY_CUSTOM_PATH is checked here rather than the variable itself.

The custom module path variables in src/CMakeLists.txt should be referenced by value with their inclusion in aux_source_directory() rather than referenced directly. For example, the KEY_CUSTOM_PATH variable is refenced here directly when it should have its value referenced using expansion (${KEY_CUSTOM_PATH})