-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[APIS 803] modified version 10.2 to refer to 10.2 cci-src (#8)
* [APIS-803] CUBRID 10.2 Driver Release * [APIS-803] cci libraries are modified for 10.2 * [APIS-803] build batch file added for build tool upgrade
- Loading branch information
1 parent
2d55bc5
commit 7b7b11f
Showing
11 changed files
with
657 additions
and
658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CUBRIDProvider", "CUBRIDProvider.vcxproj", "{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Debug|x64 = Debug|x64 | ||
Release|Win32 = Release|Win32 | ||
Release|x64 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Debug|Win32.Build.0 = Debug|Win32 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Debug|x64.ActiveCfg = Debug|x64 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Debug|x64.Build.0 = Debug|x64 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Release|Win32.ActiveCfg = Release|Win32 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Release|Win32.Build.0 = Release|Win32 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Release|x64.ActiveCfg = Release|x64 | ||
{47F98C66-1ADB-438D-9C38-A137D7B0C3D6}.Release|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(DPCodeReviewSolutionGUID) = preSolution | ||
DPCodeReviewSolutionGUID = {00000000-0000-0000-0000-000000000000} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
set WORKSPACE=%~dp0 | ||
set INSTALL_DIRS=output | ||
echo %INSTALL_DIRS% | ||
|
||
call "%VS140COMNTOOLS%vsvars32.bat" | ||
mkdir %INSTALL_DIRS% | ||
|
||
devenv CUBRIDProvider-vs2017.sln /project CUBRIDProvider.vcxproj /Rebuild "Release|Win32" | ||
devenv CUBRIDProvider-vs2017.sln /project CUBRIDProvider.vcxproj /Rebuild "Release|x64" | ||
|
||
copy Win32\Release\CUBRIDProvider.dll %INSTALL_DIRS%\CUBRIDProvider32.dll | ||
copy x64\Release\CUBRIDProvider.dll %INSTALL_DIRS%\CUBRIDProvider64.dll | ||
|
||
copy installer\installer.nsi %INSTALL_DIRS%\installer.nsi | ||
copy installer\license.txt %INSTALL_DIRS%\license.txt | ||
copy installer\README.txt %INSTALL_DIRS%\README.txt | ||
|
||
c: | ||
cd C:\NSIS | ||
|
||
makensis %WORKSPACE%\%INSTALL_DIRS%\installer.nsi |
Oops, something went wrong.