Guest User

Untitled

a guest
May 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. enigma@thinkpad ~/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2 $ ls
  2. CMakeLists.txt build dimension.cpp dimension.h dimension.o frame.cpp frame.h frame.o rawVideo.cpp rawVideo.h rawVideo.o
  3. enigma@thinkpad ~/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2 $ cat CMakeLists.txt
  4. PROJECT(rawVideo)
  5.  
  6. SET( rawVideo_sources dimension.cpp frame.cpp rawVideo.cpp )
  7.  
  8. ADD_EXECUTABLE( rawVideo ${rawVideo_sources} )
  9.  
  10. INSTALL(TARGETS rawVideo RUNTIME DESTINATION bin)
  11. enigma@thinkpad ~/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2 $ cd build/
  12. enigma@thinkpad ~/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2/build $ cmake ../
  13. -- Configuring done
  14. -- Generating done
  15. -- Build files have been written to: /home/enigma/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2/build
  16. enigma@thinkpad ~/documents/WS-08-09/C++/hausaufgaben/hausaufgabe2/build $ make
  17. Scanning dependencies of target rawVideo
  18. [ 33%] Building CXX object CMakeFiles/rawVideo.dir/rawVideo.o
  19. Linking CXX executable rawVideo
  20. [100%] Built target rawVideo
Add Comment
Please, Sign In to add comment