Wednesday 24 July 2013

How to view a lib ,exe or dll in windows

We can use dumpbin to view the storage of variables and functions of all these three types of  files lib ,exe and dll.nm is used to show the all function of the dll and lib .nm is not applicable for .exe files.We can use this command in following manner on command prompt:

1)Go to the folder where the the file is available.
2)nm filename.lib



Sunday 21 July 2013

How to use Cmake in windows

firstly run the cmake-gui
a)create a build directory in the src directory
b)put the path to src in first tab
c)put the path  of build directory in build tab
d)click configure
e)click configure again each time you make any change
f)Then click genrerate

Here is the snapshot of the c-make gui:-