Skip to content
View SaurabhSangpal's full-sized avatar
🔨
🔨
Block or Report

Block or report SaurabhSangpal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ezgit ezgit Public

    Git frontend

    C++ 1

  2. MonoMono MonoMono Public

    ShaderLab

  3. CMake Precompiled Header for Windows CMake Precompiled Header for Windows
    1
    #Based on an answer on StackOverflow https://stackoverflow.com/a/1380048
    2
    
                  
    3
    MACRO(ADD_MSVC_PRECOMPILED_HEADER PrecompiledHeader PrecompiledSource SourcesVar)
    4
        IF(MSVC)
    5
            GET_FILENAME_COMPONENT(PrecompiledBasename ${PrecompiledHeader} NAME_WE)
  4. Copy dll to binary folder Copy dll to binary folder
    1
    ADD_CUSTOM_COMMAND(TARGET PROJECT_NAME POST_BUILD
    2
        COMMAND ${CMAKE_COMMAND} -E copy
    3
            "${DLL_FILE}" $<TARGET_FILE_DIR:PROJECT_NAME>)
    4
            
    5
    # Note that this must be run after a target has been created, i.e., after running add_executable