andysworkshop / stm32plus

The C++ library for the STM32 F0, F100, F103, F107 and F4 microcontrollers
http://www.andybrown.me.uk
Other
745 stars 224 forks source link

(question) Where does the build output (.a files, headers) get compiled to? #178

Closed twitchyliquid64 closed 8 years ago

twitchyliquid64 commented 8 years ago

Where does the build output (.a files, headers) get compiled to, if you DO NOT select the install??

I am currently automating the build and was liek welp when I couldnt find them after it built successfully.

andysworkshop commented 8 years ago

Headers are not installed unless you install, they remain in place.

The library .a file is installed in a subdirectory of lib/build. The subdirectory name is generated from your scons build parameters.

Similarly, the examples each have a build subdirectory set up the same way.