diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-08-06 23:16:01 +0200 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-08-06 23:16:01 +0200 |
commit | 1337c429fb559242bcafb3ca29de65dfa48a89d5 (patch) | |
tree | 7b218053b942a53e4c500c94ca3a1c0d7464d859 /win | |
parent | e4d449a655ac16d43642cf5d57769c68468c979b (diff) | |
download | mariadb-git-1337c429fb559242bcafb3ca29de65dfa48a89d5.tar.gz |
CMakeLists.txt (many), win/README, mysql_manifest.cmake, configure.js:
Additional changes for bug#29903
- Changed to do embedded build part as normal build, when
WITH_EMBEDDED_SERVER is set.
- Allow both normal and debug build with embedded.
- Build static embedded library by pointing out all source and compile
it all, i.e. not building libraries from libraries, not portable.
- Let embedded use generated files from the "sql" directory, added
dependencies to make sure built before embedded.
- Mark library "dbug" in TARGET_LINK_LIBRARIES() with "debug", so only
linked in when debug target is used.
- Removed change of target name with "mysqld${MYSQLD_EXE_SUFFIX}", as
others can't depend on it, not defined at configure time. Instead
set the output file name.
- Created work around for bug in CMake 2.4.6 and output names, to
set the "mysqld<suffix>.pdb" name to the same base name.
- Set the correct manifest "name" (patch by iggy)
CMakeLists.txt:
Changes for embedded and Windows
libmysql/CMakeLists.txt:
Changes for embedded and Windows
libmysqld/CMakeLists.txt:
Changes for embedded and Windows
libmysqld/examples/CMakeLists.txt:
Changes for embedded and Windows
mysys/CMakeLists.txt:
Changes for embedded and Windows
regex/CMakeLists.txt:
Changes for embedded and Windows
server-tools/instance-manager/CMakeLists.txt:
Changes for embedded and Windows
sql/CMakeLists.txt:
Changes for embedded and Windows
storage/archive/CMakeLists.txt:
Changes for embedded and Windows
storage/blackhole/CMakeLists.txt:
Changes for embedded and Windows
storage/csv/CMakeLists.txt:
Changes for embedded and Windows
storage/example/CMakeLists.txt:
Changes for embedded and Windows
storage/federated/CMakeLists.txt:
Changes for embedded and Windows
storage/heap/CMakeLists.txt:
Changes for embedded and Windows
storage/innobase/CMakeLists.txt:
Changes for embedded and Windows
storage/myisam/CMakeLists.txt:
Changes for embedded and Windows
storage/myisammrg/CMakeLists.txt:
Changes for embedded and Windows
strings/CMakeLists.txt:
Changes for embedded and Windows
vio/CMakeLists.txt:
Changes for embedded and Windows
win/README:
Changes for embedded and Windows
win/configure.js:
Changes for embedded and Windows
win/mysql_manifest.cmake:
Changes for embedded and Windows
Diffstat (limited to 'win')
-rw-r--r-- | win/README | 18 | ||||
-rw-r--r-- | win/configure.js | 2 | ||||
-rwxr-xr-x | win/mysql_manifest.cmake | 2 |
3 files changed, 4 insertions, 18 deletions
diff --git a/win/README b/win/README index d4b6ee1e3df..916f64913ac 100644 --- a/win/README +++ b/win/README @@ -65,10 +65,9 @@ The options right now are: EMBED_MANIFESTS Embed custom manifests into final exes, otherwise VS default will be used. (Note - This option should only be used by MySQL AB.) - EMBEDDED_ONLY Configure solution to produce libmysqld.dll - default will be used. + WITH_EMBEDDED_SERVER Configure solution to produce libmysqld.dll + and the static mysqlserver.lib - So the command line could look like: win\configure WITH_INNOBASE_STORAGE_ENGINE WITH_PARTITION_STORAGE_ENGINE MYSQL_SERVER_SUFFIX=-pro @@ -100,16 +99,3 @@ may be necessary to clean the build tree to remove any stale objects. Please see this link: http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ At step 5 you only need to add the libraries advapi32.lib and user32.lib to the file "corewin_express.vsprops" in order to avoid link errors. - -3. Testing the Windows embedded library requires a two step process. The extra -step is necessary because the testsuite requires mysqld to run properly but both -the embedded library and the mysqld executable cannot be built at the same time. -Here's the process for building and testing the embedded library: - - A. Follow steps 1 - 7 listed above to produce the Release configuration. - B. Perform step 5 from above again adding "--EMBEDDED-ONLY" to previously - supplied options. - C. Complete the build steps above to produce the Release configuration. Make - sure to Rebuild the solution so that all libraries are re-built. - D. Run the testsuite as usual. - diff --git a/win/configure.js b/win/configure.js index 2b0e2bbcc37..7e10ac34697 100644 --- a/win/configure.js +++ b/win/configure.js @@ -47,7 +47,7 @@ try case "__NT__": case "CYBOZU": case "EMBED_MANIFESTS": - case "EMBEDDED_ONLY": + case "WITH_EMBEDDED_SERVER": configfile.WriteLine("SET (" + args.Item(i) + " TRUE)"); break; case "MYSQL_SERVER_SUFFIX": diff --git a/win/mysql_manifest.cmake b/win/mysql_manifest.cmake index 0d429e438d6..611553d68ac 100755 --- a/win/mysql_manifest.cmake +++ b/win/mysql_manifest.cmake @@ -9,7 +9,7 @@ MACRO(MYSQL_EMBED_MANIFEST _target_name _required_privs) TARGET ${_target_name} PRE_LINK COMMAND cscript.exe - ARGS "${PROJECT_SOURCE_DIR}/win/create_manifest.js" name=$(ProjectName) version=${VERSION} arch=${PROCESSOR_ARCH} exe_level=${_required_privs} outfile=$(IntDir)\\$(TargetFileName).intermediate.manifest + ARGS "${PROJECT_SOURCE_DIR}/win/create_manifest.js" name=$(TargetName) version=${VERSION} arch=${PROCESSOR_ARCH} exe_level=${_required_privs} outfile=$(IntDir)\\$(TargetFileName).intermediate.manifest COMMENT "Generates the contents of the manifest contents.") ADD_CUSTOM_COMMAND( TARGET ${_target_name} |