Update an imported library

Hi,

I have wrote several cpp's and h's for my project which i've put in the folder libraries of my sketchbook in a folder with the name of the corresponding source (Exple : i have a Analyseur.cpp and .h, it's like libraires/Analyseur/ here are the sources)
I've imported that library once, it worked well since it now appears in the list of imported libraries.
I've compiled the first time and got errors in my cpp, which i've corrected, i've compiled again and the compiler indicates me the same issues, just like it didn"t take notice of the changes.
I've closed and reopened the IDE again, my library still appears in the menu "import library" i try to reimport it but the IDE told me that i already imported it.
Anyway, i'm stuck in this situation where the IDE doesn't seem to update my sources.

How can i fix this? Thanks in advance

The "Import Library" command just places an "include" statement into your sketch. The compilation still takes place in the library folder. If you want to enforce a new compilation (although in my tests it compiles always when I did changes to the source), delete the corresponding .o file.

Anyway, i'm stuck in this situation where the IDE doesn't seem to update my sources.

It's not the IDE that updates your sources, you have to do that. But don't keep the sources in several places as this leads to errors by modifying an unused copy.

as this leads to errors by modifying an unused copy.

Use File + Preferences to turn on verbose mode for compiling, to see which files are actually being compiled.