OSDN Git Service

Add DLL type configuration in project files.
[libintl-msvc10/libintl-msvc10.git] / README.txt
index 70c3791..cf6a010 100644 (file)
@@ -39,22 +39,42 @@ STEP 3: Configure
 STEP 4: Building libraries using MSVC solution file
 
   Build all using libintl_vc09.sln or libintl_vc10.sln.
-  On success, copy library files to lib/*.
-
-    lib/x86/ ........ 32bit library.
-      libintl.lib ..... MBCS and Release build
-      libintld.lib .... MBCS and Debug build
-      libintlu.lib .... Unicode and Release build
-      libintlud.lib ... Unicode and Debug build
-    lib/x64/ ........ 64bit library.
-      libintl.lib ..... MBCS and Release build
-      libintld.lib .... MBCS and Debug build
-      libintlu.lib .... Unicode and Release build
-      libintlud.lib ... Unicode and Debug build
+  On success, copy library files to lib/* or libdll/*.
+
+    lib/x86/ ........ 32bit static library.
+      libintl.lib ..... Release         : MBCS and Release build
+      libintld.lib .... Debug           : MBCS and Debug build
+      libintlu.lib .... Unicode_Release : Unicode and Release build
+      libintlud.lib ... Unicode_Debug   : Unicode and Debug build
+    lib/x64/ ........ 64bit static library.
+      libintl.lib ..... Release         : MBCS and Release build
+      libintld.lib .... Debug           : MBCS and Debug build
+      libintlu.lib .... Unicode_Release : Unicode and Release build
+      libintlud.lib ... Unicode_Debug   : Unicode and Debug build
+
+    libdll/x86/ ..... 32bit dynamic link library.
+      libintl.dll ..... DLL_Release         : MBCS and Release build
+      libintl.lib
+      libintld.dll .... DLL_Debug           : MBCS and Debug build
+      libintld.lib
+      libintlu.dll .... DLL_Unicode_Release : Unicode and Release build
+      libintlu.lib
+      libintlud.dll ... DLL_Unicode_Debug   : Unicode and Debug build
+      libintlud.lib
+    libdll/x64/ ..... 64bit dynamic link library.
+      libintl.dll ..... DLL_Release         : MBCS and Release build
+      libintl.lib
+      libintld.dll .... DLL_Debug           : MBCS and Debug build
+      libintld.lib
+      libintlu.dll .... DLL_Unicode_Release : Unicode and Release build
+      libintlu.lib
+      libintlud.dll ... DLL_Unicode_Debug   : Unicode and Debug build
+      libintlud.lib
 
 
 STEP 5: Testing
 
   Build sample program on samples directory and test them.
 
-
+    If you test dll, copy dll file to application directory from libdll
+  directory.