Cross Make 인데
정확하게는 makefile을 생성하는 제너레이터 이다.

MakeLists.txt 라는 파일을 생성해 놓으면 그 파일의 정의에 따라 Makefile을 생성하는 툴인데
문법은 흐음... 그리 어려워 보이진 않는 느낌?
 PROJECT(FOO)
 # make sure cmake addes the binary directory for the project to the include path
 INCLUDE_DIRECTORIES(${FOO_BINARY_DIR})
 # add the executable that will do the generation
 ADD_EXECUTABLE(my_generator my_generator.cxx)
 GET_TARGET_PROPERTY(MY_GENERATOR_EXE my_generator LOCATION)
 # add the custom command that will generate all three files
 ADD_CUSTOM_COMMAND(
   OUTPUT ${FOO_BINARY_DIR}/output1.cpp ${FOO_BINARY_DIR}/output2.h ${FOO_BINARY_DIR}/output3.cpp
   COMMAND ${MY_GENERATOR_EXE} ${FOO_BINARY_DIR} ${FOO_SOURCE_DIR}/input.txt
   DEPENDS my_generator
   MAIN_DEPENDENCY ${FOO_SOURCE_DIR}/input.txt
   )
 # now create an executable using the generated files
 ADD_EXECUTABLE(generated
                ${FOO_BINARY_DIR}/output1.cpp
                ${FOO_BINARY_DIR}/output2.h
                ${FOO_BINARY_DIR}/output3.cpp) 

[링크 : http://www.cmake.org/Wiki/CMake_FAQ

윈도우에서는 GUI 툴이 생성을 해주는 것 같다.


linux에서도 gt 나 ncurse로 GUI / CUI 구성이 되어 있는듯 하다
$ apt-cache search cmake
cmake-data - CMake data files (modules, templates and documentation)
cmake - 크로스 플랫폼, 오픈 소스 make 시스템
cmake-curses-gui - Curses based user interface for CMake (ccmake)
cmake-qt-gui - Qt4 based user interface for CMake (cmake-gui)

cmake-curses-gui 의 실행 파일명은 ccmake 이고,
cmake-qt-gui의 실행 파일명은 cmake-gui 이다.


[링크 : http://packages.ubuntu.com/lucid/cmake-curses-gui]
[링크 : http://www.cmake.org/cmake/help/runningcmake.html]  << 사용법

[링크 : http://rgbear.tistory.com/1]
[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/Development/Env/cmake]
[링크 : http://semtle.tistory.com/205]

2010/04/06 - [프로그램 사용/make, configure] - cmake - cross make 

'프로그램 사용 > make, configure' 카테고리의 다른 글

make burn 0.0.0 ???  (0) 2014.11.11
make를 조용하게  (0) 2014.09.12
cross compile 초기화 하기  (0) 2010.05.18
cmake - cross make  (0) 2010.04.06
makefile 에서 컴파일할 목록 생성하기  (0) 2010.04.03
Posted by 구차니
프로그램 사용2011. 10. 7. 09:13
역시 FAQ는 읽어야 제맛

In other cases, uClibc leaves certain features (such as full C99 Math library support, wordexp, IPV6, and RPC support)disabled by default. Those features can be enabled for people that need them, but are otherwise disabled to save space.

you do not need to give away your application source code just because you use uClibc and/or run on Linux. uClibc is licensed under the Lesser GPL license, just like the GNU C library (glibc). 

[링크 : http://uclibc.org/FAQ.html

Posted by 구차니
DHCP는 BOOTP를 이용하므로
filter에 bootp 라고 하면 된다고 하는데

윈도우 - ipconfig / renew 하니 딱 두개의 패킷이 잡히네 머~



[링크 : http://wiki.wireshark.org/DHCP]
Posted by 구차니
이유는 알수 없음 -_-



아무튼, 한번 캡쳐하고 나면 프로그램 재시작 전에는 저~얼대
녹화도 안되는 버그도 여전히 안고쳐짐 -_- 

[링크 : http://en.freesion.com/3865/4898908/34565154/]
[링크 : http://s1.zetaboards.com/The_RX_Community/topic/3085909/1/]
[링크 : http://camstudio.org/forum/discussion/33
Posted by 구차니
프로그램 사용/vi2011. 9. 26. 16:18
Visual Studio 에서 F8 이었던가
코스를 자동으로 indent 맞춰주는 멋진 기능이 있는데

vi에서는 = 를 누르면 된다. 

gg=G 하면 전체 코드에 대해서 정렬을 하고
visual mode에서 영역 선택후 =를 눌러도 영역에 대해 정렬을 한다.

[링크 : http://exsuperstar.net/entry.php?blogid=158
Posted by 구차니
프로그램 사용/vi2011. 9. 26. 16:00
:set ts=n
기본값은 8로 되어있는데 솔찍히 8은 좀.. 인간적으로 너무 크지 않나?

[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/Vim/Documents/UsedVim]
Posted by 구차니
프로그램 사용/Putty2011. 9. 21. 21:45
리눅스용 putty가 있다는 것은 먼가 놀라운 사실인데 -ㅁ- 

 
우분투에서는 putty라는 패키지로 존재한다.
$ sudo apt-get install putty

아직 아쉬운 점은, F1~F2 이런 펑션키가 안된다는 점
그리고 윈도우 버전처럼 실행중에 메뉴를 띄울수 없다는 점이다.
찾으면 없을리는 없겠지만 흐음... 어디 짱박혀 있을까?
---
Ctrl + R-click 이 메뉴를 띄움
[링크 : http://www.linuxforums.org/forum/applications/144589-putty-linux-change-setting-during-running-session.html]

F1~F10키를 먹게 하는 방법은
Terminal - Keyboard의 "The Function keys and keypad" 옵션을 "Xterm R6"로 설정함

---


'프로그램 사용 > Putty' 카테고리의 다른 글

putty chrome socks5 / dns remote  (0) 2014.12.18
putty로 proxy 설정하기 (socks5 + firefox)  (0) 2014.12.17
putty를 이용한 vnc 터널링  (1) 2011.06.21
Putty를 이용한 Dynamic SOCKS  (2) 2010.11.20
putty 자동 로그인  (2) 2009.07.18
Posted by 구차니
프로그램 사용/Blender2011. 9. 19. 14:02
Info Tool - File - User Preference 에서


"Install Add-On" - 항상사용하려면 체크를 해준후 - "Save As Default"를 해준다.
버그인지 실수인지, Save As Default로는 잘 안되는 감이 있는데,
그러면 Info 메뉴에서 "Save User Settings"  를 해주면 된다.


'프로그램 사용 > Blender' 카테고리의 다른 글

ubuntu blender addons  (0) 2016.11.17
blender 2.78 network render  (0) 2016.11.16
blender 2.5용 Stereoscopic plugin  (0) 2011.09.07
Blender 2.5x 계열 UI 정리  (0) 2011.09.06
blender - armature  (0) 2011.05.02
Posted by 구차니
프로그램 사용/3dmax2011. 9. 19. 10:50
스크립트를 대충봤을때는
Axis-off 방식의 Stereoscopic을 구현한 플러그 인으로 보인다.

[링크 : http://www.burningpixel.com/Max/StereoG.htm]

'프로그램 사용 > 3dmax' 카테고리의 다른 글

3dmax 몇가지 단축키  (2) 2011.04.30
Posted by 구차니
프로그램 사용/coLinux2011. 9. 12. 12:45
Win7 64bit 깔고(메모리가 6기가라..)
룰루랄라 개발환경 잡는데 Portable Ubuntu(colinux)를 호환성모드로 돌려도
관리자 권한으로 돌려도 안된다 -_-

혹시나 해서 검색을 해봤더니 뜨아아~

"64bit 지원하나효?
대답은 : ㄴㄴ"


[링크 : http://colinux.wikia.com/wiki/FAQ]

대략 좌절 OTL 

'프로그램 사용 > coLinux' 카테고리의 다른 글

colinux 위험성  (0) 2012.03.06
portable ubuntu TRES 다운로드 경로  (0) 2011.09.07
portable fedora colinux  (0) 2011.03.15
coLinux에서 듀얼코어 지원이 되나요?  (0) 2010.09.26
Portable Ubuntu TRES / ubuntu 9.10  (6) 2010.05.07
Posted by 구차니