Changeset 22 in pacpusframework for trunk


Ignore:
Timestamp:
01/08/13 14:13:01 (11 years ago)
Author:
Marek Kurdej
Message:

Fixed: pacpus_add_library and pacpus_add_executable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cmake/PacpusUtilities.cmake

    r21 r22  
    161161# Pacpus add library and set debug postfix
    162162# ========================================
    163 function(pacpus_add_library)
    164     add_library(${target}
     163function(pacpus_add_library target)
     164    add_library(
    165165        ${ARGV}
    166166    )
     
    174174# Pacpus add executable and set debug postfix
    175175# ========================================
    176 function(pacpus_add_executable)
    177     add_executable(${target}
     176function(pacpus_add_executable target)
     177    add_executable(
    178178        ${ARGV}
    179179    )
Note: See TracChangeset for help on using the changeset viewer.