aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Set the C/C++ standard version properties manuallyChris Robinson2023-02-251-1/+2
| | | | | Setting it globally interferes with Oboe trying to use C++17 (when its built as a sub-project), which we don't require yet.
* Fix installing alsoft-configChris Robinson2020-04-151-1/+9
|
* Combine utility target installsChris Robinson2020-04-141-7/+0
|
* Require Qt5 for alsoft-configChris Robinson2020-04-051-49/+17
|
* Don't include version.h in mainwindow.cppChris Robinson2019-08-311-0/+2
| | | | Should help with post-commit compile times
* CMAKE: export PUBLIC headers of OpenAL.ArthurSonzogni2019-04-301-0/+2
| | | | | | | | | | | | | | | | Remove the cmake function: INCLUDE_DIRECTORIES(..) Replace it by: TARGET_INCLUDE_DIRECTORIES(...) It gives us the opportunity to define whether or not OpenAL dependencies should be exported or not (using PUBLIC or PRIVATE keywoard). [user visible changes] The OpenAL PUBLIC headers are exported. When a target depends on OpenAL, it will have access to its public headers. Some small refactor along the way.
* Include header files in CMake's source listsChris Robinson2018-04-211-2/+4
|
* Search for and use Qt5 for alsoft-configChris Robinson2017-01-121-13/+36
| | | | An option is provided to instead use Qt4.8 still if desired.
* Rename the version target for systems that have a version libChris Robinson2016-12-211-2/+2
|
* More robustly generate the git commit ID and branchChris Robinson2016-12-211-0/+3
|
* Use GNUInstallDirs to place the build artifacts properlyMarcel Metz2016-09-061-3/+3
| | | | | | | | CMake 2.8.5 added the GNUInstallDirs module, which provides various variables following the CMAKE_INSTALL_*DIR pattern to allow users a more flexible installation setup and to provide sensible defaults while respecting distribution specific install locations like lib64 for RPM based linux distributions or debian multiarch tuples.
* Add a cmake option to embed the HRTF dataChris Robinson2016-07-121-0/+1
|
* Don't have ../../ as part of the target nameChris Robinson2013-07-021-3/+4
|
* Check for Qt4 earlierChris Robinson2013-06-241-1/+0
|
* Properly check that Qt4 4.8+ was foundChris Robinson2013-06-241-1/+1
|
* Specify the required Qt4 version to find_packageChris Robinson2013-06-241-5/+3
|
* Make sure QtCore and QtGui were found and link with the appropriate libsChris Robinson2013-06-241-2/+2
|
* Require Qt 4.8 or newer for alsoft-configChris Robinson2013-06-241-1/+2
|
* Move alsoft-config to a separate project fileChris Robinson2013-06-241-0/+30
This to help avoid FindQt4.cmake from polluting the current project with defines and include directories, applying them to targets that don't use Qt.