- Timestamp:
- 01/30/15 11:25:35 (10 years ago)
- Location:
- cpp/frams
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/Makefile-SDK
r317 r318 9 9 sdk_tests: $(SDK_TESTS) 10 10 11 CXXWARNINGS=-Wall -Wno-parentheses -Wno-overloaded-virtual -Wno-format -Werror=return-type 12 11 13 SDK_BUILD_CONFIG= -include frams/config/sdk_build_config.h 12 CXXFLAGS= -I$(CURDIR) -std=gnu++11 $(SDK_BUILD_CONFIG) -Wno-parentheses -Wno-overloaded-virtual -Wno-format-g14 CXXFLAGS= -I$(CURDIR) -std=gnu++11 $(SDK_BUILD_CONFIG) $(CXXWARNINGS) -g 13 15 14 16 ############################################# -
cpp/frams/_demos/geometry/geometrytestutils.cpp
r299 r318 101 101 test(model); 102 102 GeometryTestUtils::describePart(part, stdout); 103 return 0; 103 104 } 104 105 -
cpp/frams/config/sdk_build_config.h
r317 r318 8 8 #include "version.h" 9 9 10 #if __APPLE__10 #ifdef __APPLE__ 11 11 #define MACOS 12 #elif __linux12 #elif defined __linux || defined __CYGWIN__ 13 13 #define LINUX 14 14 #endif
Note: See TracChangeset
for help on using the changeset viewer.