Changeset 301 in pacpusframework for trunk/examples
- Timestamp:
- Apr 8, 2014, 10:03:01 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 build 2 CMakeLists.txt.user*
-
- Property svn:ignore
-
trunk/examples/ProducerConsumerExample/CMakeLists.txt
r189 r301 9 9 10 10 ################################################################################ 11 # INCLUDES11 # DIRECTORIES 12 12 include_directories( 13 13 ${PACPUSCITYVIP_INCLUDE_DIR} … … 16 16 ) 17 17 18 ################################################################################19 # Link directories20 18 set(SRC_BINARY_DIR "${PROJECT_BINARY_DIR}/../../src") 21 19 get_filename_component(SRC_BINARY_DIR "${SRC_BINARY_DIR}" ABSOLUTE) … … 24 22 ${SRC_BINARY_DIR}/PacpusLib 25 23 ${SRC_BINARY_DIR}/PacpusTools 26 24 ${SRC_BINARY_DIR}/RoadTime 27 25 ) 28 26 … … 78 76 ) 79 77 endif() 80 #message(STATUS "\${PACPUS_LIBRARIES} = ${PACPUS_LIBRARIES}") 81 #message(STATUS "\${PACPUS_DEPENDENCIES_LIB} = ${PACPUS_DEPENDENCIES_LIB}") 78 82 79 # LIBS 83 80 set(LIBS 84 81 ${PACPUS_LIBRARIES} 85 ${PACPUS_DEPENDENCIES_LIB} 86 #${OpenCV_LIBRARIES} 82 ${PACPUS_DEPENDENCIES_LIB} 87 83 ${QT_LIBRARIES} 88 84 ) -
trunk/examples/ProducerConsumerExample/ProducerExample.cpp
r293 r301 60 60 using boost::ref; 61 61 62 std::fstream mFile(mOutputFileName , std::ios_base::out | std::ios_base::app);62 std::fstream mFile(mOutputFileName.c_str(), std::ios_base::out | std::ios_base::app); 63 63 if (!mFile.is_open()) { 64 64 LOG_ERROR("file '" << mOutputFileName << "' cannot be opened");
Note:
See TracChangeset
for help on using the changeset viewer.