COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (184 - 186 of 545)

Ticket Resolution Summary Owner Reporter
#390 done Different compilation flags using CMAKE vs. Autotools Akos Ladanyi Alpar Juttner
Description
  • Autotool uses -g -O2 + a huge set of warning flags by default.
  • Using scripts/bootstrap.sh, we have a choice to optimize or not (-O2 vs. nothing). This script uses -ggdb instead of -g (not a big diffenerce) and the same warning options.
  • The CMAKE environment uses
    • no warning flags at all!!!
    • one of the following debug/optimization settings
      • -g (DEBUG mode),
      • -Os -DNDEBUG (MINRELSIZE mode),
      • -O2 -g (RELWITHDEBINFO mode), or
      • -O3 -DNDEBUG (RELEASE mode)
#393 fixed CMAKE doesn't create lemon.pc Akos Ladanyi Alpar Juttner
Description

lemon.pc is the pkg-config config file and should be installed under @prefix@/lib/pkgconfig

#395 done Various CMAKE enhancements Alpar Juttner Alpar Juttner
Description

395.patches consists of the following changesets.

[10242c611190]

Create and install lemon.pc, for completeness, see #393

[48e29534cf03]

The deafult target doesn't build lp_test and mip_test, for completeness, see #388

[0fbbdd578c06]

Full path for DoxygenLayout.xml in Doxyfile.in, so that it will work with external build (which is strongly suggested with CMAKE).

[481496e6d71f]

SOURCE_BROWSER Doxygen switch is configurable from CMAKE. This option includes a syntax highlighted and cross linked copy of the source files into the doc. A useful option but it makes the doc much larger and it will takes more time to build the doc.

[09282720100b]

update-external-tags CMAKE target. Similar to what we have for the autotool, this target download the libstdc++ tags file from the gnu site.

Note: See TracQuery for help on using queries.