Skip to content

Commit

Permalink
Improve the granularity of the installed files.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoconni committed Jul 24, 2021
1 parent 5a85af7 commit c943f83
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions JSBSim.iss.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,25 @@ WizardImageFile=logos\*.bmp
WizardSmallImageFile=small\*.bmp

[Components]
Name: "executables"; Description: "JSBSim and aeromatic executables"; Types: full compact
Name: "JSBSim"; Description: "JSBSim executable"; Types: full compact
Name: "data"; Description: "JSBSim scripts and aircraft data"; Types: full
Name: "aeromatic"; Description: "Aeromatic++ executable"; Types: full compact
Name: "aeromatic/samples"; Description: "Aeromatic++ samples"; Types: full
Name: "devfiles"; Description: "JSBSim development files (headers and C++ library)"; Types: full
Name: "devfiles\matlab"; Description: "JSBSim files to build an interface to Matlab"; Types: full

[Files]
Source: "${CMAKE_BINARY_DIR}\src\JSBSim.exe"; DestDir: "{app}"; Components: executables
Source: "${CMAKE_BINARY_DIR}\utils\aeromatic++\aeromatic.exe"; DestDir: "{app}\aeromatic++"; Components: executables
Source: "${CMAKE_BINARY_DIR}\msvcp*.dll"; DestDir: "{app}"; Components: executables
Source: "${CMAKE_BINARY_DIR}\src\JSBSim.exe"; DestDir: "{app}"; Components: JSBSim
Source: "${CMAKE_BINARY_DIR}\utils\aeromatic++\aeromatic.exe"; DestDir: "{app}\aeromatic++"; Components: aeromatic
Source: "${CMAKE_BINARY_DIR}\msvcp*.dll"; DestDir: "{app}"; Components: JSBSim aeromatic
Source: "${CMAKE_SOURCE_DIR}\aircraft\*.xml"; DestDir: "{app}\aircraft"; Flags: recursesubdirs; Components: data
Source: "${CMAKE_SOURCE_DIR}\data_output\*.xml"; DestDir: "{app}\data_output"; Components: data
Source: "${CMAKE_SOURCE_DIR}\engine\*.xml"; DestDir: "{app}\engine"; Components: data
Source: "${CMAKE_SOURCE_DIR}\scripts\*.xml"; DestDir: "{app}\scripts"; Components: data
Source: "${CMAKE_SOURCE_DIR}\systems\*.xml"; DestDir: "{app}\systems"; Components: data
Source: "${CMAKE_SOURCE_DIR}\utils\aeromatic++\samples\*.param"; DestDir: "{app}\aeromatic++\samples"; Components: data
Source: "${CMAKE_SOURCE_DIR}\utils\aeromatic++\samples\*.param"; DestDir: "{app}\aeromatic++\samples"; Components: aeromatic/samples
Source: "${CMAKE_BINARY_DIR}\src\JSBSim.lib"; DestDir: "{app}\lib"; Components: devfiles
Source: "${CMAKE_SOURCE_DIR}\src\*.h"; DestDir: "{app}\include"; Flags: recursesubdirs; Components: devfiles
Source: "${CMAKE_SOURCE_DIR}\matlab\*.cpp"; DestDir: "{app}\matlab"; Components: devfiles\matlab
Source: "${CMAKE_SOURCE_DIR}\matlab\*.h"; DestDir: "{app}\matlab"; Components: devfiles\matlab
Source: "${CMAKE_SOURCE_DIR}\matlab\*.m"; DestDir: "{app}\matlab"; Components: devfiles\matlab
Source: "${CMAKE_SOURCE_DIR}\matlab\JSBSimSimulinkCompile.m"; DestDir: "{app}\matlab"; Components: devfiles\matlab

0 comments on commit c943f83

Please sign in to comment.