Skip to content

Commit 1b619a7

Browse files
committed
ci: big changes to the builds v11
1 parent e9d12cf commit 1b619a7

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ after_build:
7676
- mkdir deployment
7777
# zip the files for the deployment
7878
- cd %APPVEYOR_BUILD_FOLDER%\opensource_install
79-
- 7z a %OPENSOURCE_EXTENDED_NAME%.zip bin\* lib\TomatoLib* include\* # zip
79+
- 7z a %OPENSOURCE_EXTENDED_NAME%.zip bin\* lib\* include\* # zip
8080
- cd %APPVEYOR_BUILD_FOLDER%\full_install
81-
- 7z a %FULL_EXTENDED_NAME%.zip bin\* lib\TomatoLib* include\* # zip
81+
- 7z a %FULL_EXTENDED_NAME%.zip bin\* lib\* include\* # zip
8282
# copy the files for the deployment
8383
- copy %APPVEYOR_BUILD_FOLDER%\opensource_install\%OPENSOURCE_EXTENDED_NAME%.zip %APPVEYOR_BUILD_FOLDER%\deployment\%OPENSOURCE_EXTENDED_NAME%.zip
8484
- copy %APPVEYOR_BUILD_FOLDER%\full_install\%FULL_EXTENDED_NAME%.zip %APPVEYOR_BUILD_FOLDER%\deployment\%FULL_EXTENDED_NAME%.zip

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ endif()
177177

178178
install (TARGETS TomatoLib
179179
RUNTIME DESTINATION bin
180-
LIBRARY DESTINATION lib)
180+
LIBRARY DESTINATION lib
181+
ARCHIVE DESTINATION lib)
181182
install (FILES ${API_FILES} DESTINATION include) # headers
182183
if(BUILD_APP)
183184
install (TARGETS TomatoExe DESTINATION bin)

app/OxFactoryOfCalculators.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace Ox {
7878
static void disp(int parameter_to_map = -1){
7979

8080
if (parameter_to_map >= 0) {
81-
printf("%-30s%-20s", " parameter_to_map: ", calculatorsTypeNames[parameter_to_map]);
81+
printf("%-28s%-22s", " parameter_to_map: ", calculatorsTypeNames[parameter_to_map]);
8282
}
8383

8484
printf("options: [ ");

app/OxFactoryOfFitters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ namespace Ox {
103103
static void disp(int fitting_method = -1){
104104

105105
if (fitting_method >= 0) {
106-
printf("%-30s%-20s", " fitting_method: ", fittersTypeNames[fitting_method]);
106+
printf("%-28s%-22s", " fitting_method: ", fittersTypeNames[fitting_method]);
107107
}
108108

109109
printf("options: [ ");

app/OxFactoryOfFunctions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace Ox {
7070
static void disp(int functions_type = -1){
7171

7272
if (functions_type >= 0) {
73-
printf("%-30s%-20s", " functions_type: ", functionsTypeNames[functions_type]);
73+
printf("%-28s%-22s", " functions_type: ", functionsTypeNames[functions_type]);
7474
}
7575

7676
printf("options: [ ");

app/OxFactoryOfSignCalculators.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ namespace Ox {
6868
static void disp(int sign_calc_method = -1){
6969

7070
if (sign_calc_method >= 0) {
71-
printf("%-30s%-20s", " sign_calc_method: ", signCalculatorsTypeNames[sign_calc_method]);
71+
printf("%-28s%-22s", " sign_calc_method: ", signCalculatorsTypeNames[sign_calc_method]);
7272
}
7373

7474
printf("options: [ ");

app/OxFactoryOfStartPointCalculators.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace Ox {
7070
static void disp(int start_point_calc_method = -1){
7171

7272
if (start_point_calc_method >= 0) {
73-
printf("%-30s%-20s", " start_point_calc_method: ", startPointCalculatorsTypeNames[start_point_calc_method]);
73+
printf("%-28s%-22s", " start_point_calc_method: ", startPointCalculatorsTypeNames[start_point_calc_method]);
7474
}
7575

7676
printf("options: [ ");

0 commit comments

Comments
 (0)