I'm working on a WiX 3.5 project that installs a Windows service and a WPF client. The service uses SQL Server SMO and SQL Server CE, while the client uses DevExpress libraries. During installation, the user can choose to install either or both of the components. Is it possible for the MSI to check the SMO prerequisite if the server component is selected, and the DevExpress prerequisite if the client component is selected?
In other words, I shouldn't have to install DevExpress components on a server, and SMO/CE on the client. I've used the Windows SDK bootstrapper before to at least specify the SQL CE bootstrapper, but the bootstrapper would obviously have no knowledge of what components the user chose to select.
Will I have to ship separate client/server installs?