Sfoglia il codice sorgente

Fix repeated builds of targets. (#903)

Accidentally added a dependency on the generated boost header tree for all targets. The boost headers generation only works if it's an implicit-dependency. As otherwise dependents think they are never up to date.
René Ferdinand Rivera Morell 1 anno fa
parent
commit
09f8d09b53
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Jamroot

+ 1 - 1
Jamroot

@@ -454,7 +454,7 @@ for local lib in $(all-libraries-to-declare)
     {
     {
         project $(BOOST_LIB_PROJECT)
         project $(BOOST_LIB_PROJECT)
             : requirements
             : requirements
-                <dependency>/boost//headers
+                <implicit-dependency>/boost//headers
             ;
             ;
         alias $(BOOST_LIB_TARGET) ;
         alias $(BOOST_LIB_TARGET) ;
     }
     }

粤ICP备19079148号