summaryrefslogtreecommitdiff
path: root/Modules/CMakeASM_NASMInformation.cmake
Commit message (Collapse)AuthorAgeFilesLines
* ASM_NASM: Pass preprocessor definitions to assemblerWirtos_new2021-09-281-1/+1
| | | | | | Add the `<DEFINES>` placeholder to `CMAKE_ASM_NASM_COMPILE_OBJECT`. Fixes: #22694
* ASM_NASM: Do not generate depfiles with YASMGregor Jasny2021-06-251-7/+9
| | | | | | | | In 3aec26660a (Merge topic 'nasm_add_deps', 2021-03-03) the ASM_NASM language enabled the generation of GCC compatible depfiles for NASM. Unfortunatly, those are not supported by YASM. Fixes: #22341
* ASM_NASM: generate depfiles for other makefilesFrancesco Bertolaccini2021-03-021-0/+7
|
* ASM_NASM: Add depfile generationFrancesco Bertolaccini2021-03-011-0/+2
|
* NASM: Fix object format when CXX is enabled but not CChristian Feldmann2020-04-201-3/+9
| | | | Check CXX data pointer size if C is not set.
* Modules: Check nasm compile object variableConnor Davis2019-03-291-1/+3
| | | | | Check if the CMAKE_ASM_NASM_COMPILE_OBJECT variable is set before modifying it. Only modify if not previously set.
* Simplify CMake per-source license noticesBrad King2016-09-271-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* ASM: Add missing <INCLUDES> placeholder for "compile" rulesGregor Jasny2016-03-291-1/+1
| | | | | | | | This placeholder was added to the compilation rules for other languages by commit v3.4.0-rc1~342^2 (Factor an <INCLUDES> placeholder out of <FLAGS> in rule variables, 2015-07-13) but ASM was incorrectly left out. Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-6/+6
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Some more fixes for nasm support, from Etienne (#10069)Alex Neundorf2010-11-121-17/+19
| | | | Alex
* Use CMAKE_ASM_NASM_FLAGS for nasm instead of FLAGSAlex Neundorf2010-10-211-1/+1
| | | | Alex
* Add support for yasm, a nasm compatible assemblerAlex Neundorf2010-10-211-1/+1
| | | | Alex
* We already have 2010, fix copyright year.Alex Neundorf2010-09-271-1/+1
| | | | Alex
* Add missing copyright headersAlex Neundorf2010-09-271-0/+14
| | | | Alex
* Add support for nasm assembler, patch by Peter Collingbourne (see #10069)Alex Neundorf2010-09-251-0/+30
Alex