Bowmore Posted August 5, 2020 Share Posted August 5, 2020 I've got a lot of AutoIt applications that I've written for work and I'm wanting to package the source for each of them in a zip file including all the includes and any dlls etc. The reason I want to do this is to enable minor tweaks to be quickly made to the applications in the future without having to worry about it not building due to some significant upgrade to one or more of the includes. Before I start writing myself a script to do this I would just like to check if anyone knows of script that will recursively parse all the included in the main au3 file and produce a list of all include files the application is dependent on. "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far, the universe is winning."- Rick Cook Link to comment Share on other sites More sharing options...
RTFC Posted August 5, 2020 Share Posted August 5, 2020 CodeScanner will produce a list of #includes; CodeCrypter creates a single script with no redundant parts (if so instructed). My Contributions and Wrappers Spoiler BitMaskSudokuSolver BuildPartitionTable CodeCrypter CodeScanner DigitalDisplay Eigen4AutoIt FAT Suite HighMem MetaCodeFileLibrary OSgrid Pool RdRand SecondDesktop SimulatedAnnealing Xbase I/O Link to comment Share on other sites More sharing options...
Bowmore Posted August 5, 2020 Author Share Posted August 5, 2020 Thanks RTFC CodeScanner is perfect for my needs, better than I was hoping for. "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far, the universe is winning."- Rick Cook Link to comment Share on other sites More sharing options...
Zedna Posted August 5, 2020 Share Posted August 5, 2020 I recommend archiving AutoIt's (ZIP) installers (https://www.autoitscript.com/autoit3/files/archive/autoit/autoit-v3.3.14.5.zip) instead of archiving standard include files from all scripts. It's simpler also for future running/compiling scripts with any different AutoIt's version, in your scripts only add at first line comment about version of AutoIt needed for running/compiling that script. See this my post about it: Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Bowmore Posted August 15, 2020 Author Share Posted August 15, 2020 Zedna Thanks for that suggestion I had not thought of doing that. It's probably a simpler for me to include a zip of the installer with my code archive. Thanks "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far, the universe is winning."- Rick Cook Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now