Commit 0a232313 authored by jan.koester's avatar jan.koester
Browse files

wix uid

parent 62456746
Loading
Loading
Loading
Loading

CMakeSettings.json

0 → 100644
+27 −0
Original line number Diff line number Diff line
{
    "configurations": [
        {
            "name": "x64-Debug",
            "generator": "Ninja",
            "configurationType": "Debug",
            "inheritEnvironments": [ "msvc_x64_x64" ],
            "buildRoot": "${projectDir}\\out\\build\\${name}",
            "installRoot": "${projectDir}\\out\\install\\${name}",
            "cmakeCommandArgs": "",
            "buildCommandArgs": "",
            "ctestCommandArgs": ""
        },
        {
            "name": "x86-Debug",
            "generator": "Ninja",
            "configurationType": "Debug",
            "buildRoot": "${projectDir}\\out\\build\\${name}",
            "installRoot": "${projectDir}\\out\\install\\${name}",
            "cmakeCommandArgs": "",
            "buildCommandArgs": "",
            "ctestCommandArgs": "",
            "inheritEnvironments": [ "msvc_x86" ],
            "variables": []
        }
    ]
}
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
add_library(cmdplus STATIC cmdplus.cpp)
add_library(cmdplus STATIC cmdplus.cpp  cmdplus.h)


set_property(TARGET cmdplus PROPERTY VERSION ${Upstream_VERSION})
@@ -52,5 +52,6 @@ if(${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows")
    set(CPACK_PACKAGE_VERSION_MINOR "0")
    set(CPACK_PACKAGE_VERSION_PATCH "0")
    set(CPACK_PACKAGE_INSTALL_DIRECTORY "libcmdplus")
    set(CPACK_WIX_UPGRADE_GUID "BFFCA077-7944-49E6-A4D2-281D56565B69")
    INCLUDE(CPack)
endif()