-
Notifications
You must be signed in to change notification settings - Fork 4
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
at_c: C Release Automation should move root CMakeLists.txt #378
Comments
@JeremyTubongbanua simply copying the root I think we have a couple of options here:
I think my preference is 1, but what are your thoughts? |
Ah, I see I would be for the idea of permanently moving our Then, I would imagine developers could use FetchContent like so: FetchContent_Declare(
atsdk
URL <...>.tar.gz
URL_HASH SHA256=<hash>
SOURCE_DIR packages/atsdk
)
FetchContent_MakeAvailable(atsdk) We would delete our Is this what you had in mind @cpswan Let me know your thoughts |
Thoughts in architecture call: Have a
We could even branch out to do things like:
The pro to doing things this way is that we can engineer many different kinds of CMakeLists.txt for different customer requirements. If we do it this way, we have to make We can change the names of these directories. Instead of |
Moving into PR95 and adding some additional SP |
@JeremyTubongbanua are you going to take care of the refactor you propose above? |
I sure can @cpswan 👍🏼 Feel free to un-assign yourself in the meantime while I pick up this work. Once this work is complete, I think I will create a new ticket for you if I need any help |
After investigation, this does not work unless you have the C SDK installed beforehand. In other words, it won't work for first time users.
I think it would be worth
cp ./CMakeLists.txt
andcp -r cmake/
into the build automationThe text was updated successfully, but these errors were encountered: