Changeset 1056:6660ac776acf in lemon
- Timestamp:
- 04/12/11 08:04:04 (14 years ago)
- Branch:
- default
- Parents:
- 1050:78b9fb1f4454 (diff), 1053:64260c0f58eb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r1040 r1056 52 52 ELSE() 53 53 IF(CMAKE_COMPILER_IS_GNUCXX) 54 SET(CXX_WARNING "-Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual - ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas")54 SET(CXX_WARNING "-Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas") 55 55 SET(CMAKE_CXX_FLAGS_DEBUG CACHE STRING "-ggdb") 56 56 SET(CMAKE_C_FLAGS_DEBUG CACHE STRING "-ggdb") -
CMakeLists.txt
r1053 r1056 125 125 ADD_SUBDIRECTORY(lemon) 126 126 IF(${CMAKE_SOURCE_DIR} STREQUAL ${PROJECT_SOURCE_DIR}) 127 ADD_SUBDIRECTORY(contrib) 127 128 ADD_SUBDIRECTORY(demo) 128 129 ADD_SUBDIRECTORY(tools) -
lemon/bits/windows.cc
r956 r1055 41 41 #include <unistd.h> 42 42 #include <ctime> 43 #ifndef WIN32 43 44 #include <sys/times.h> 45 #endif 44 46 #include <sys/time.h> 45 47 #endif -
lemon/bits/windows.cc
r1053 r1055 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-20 095 * Copyright (C) 2003-2010 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 99 99 GetSystemTime(&time); 100 100 char buf1[11], buf2[9], buf3[5]; 101 101 if (GetDateFormat(MY_LOCALE, 0, &time, 102 102 ("ddd MMM dd"), buf1, 11) && 103 103 GetTimeFormat(MY_LOCALE, 0, &time,
Note: See TracChangeset
for help on using the changeset viewer.