~ubuntu-branches/ubuntu/oneiric/portmidi/oneiric-updates

« back to all changes in this revision

Viewing changes to pm_win/clean_up_vcproj.awk

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2010-02-14 17:30:52 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100214173052-uraknpxk6m8ogzf8
Tags: 1:200-0ubuntu1
* New upstream release
* debian/patches/: Refresh/rediff

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    #=================IMPORTANT====================
15
15
    # change the following path to the path in which
16
16
    # the CMakeLists.txt file resides:
17
 
    base_path = "C:\\\\Users\\\\rbd\\\\portmidi";
 
17
    base_path = "C:\\\\Users\\\\rbd\\\\portmedia\\\\portmidi";
18
18
    #==============================================
19
19
 
20
20
    base_path_2 = base_path;
54
54
        state = "cmakelists";
55
55
        next # do not print this line
56
56
    };
 
57
    # THIS CODE WOULD ALLOW portmidi-static and portmidi-dynamic IN
 
58
    # pm_commmon. I DECIDED TO TRY PUTTING THEM IN SEPARATE DIRECTORIES
 
59
    # INSTEAD.
 
60
    # Use static libraries for everything except portmidi-dynamic
 
61
    #if (($0 ~ "RuntimeLibrary=") && (base_relative ~ "dynamic")) {
 
62
    #    if ($0 ~ 2) {
 
63
    #        $0 = "\t\t\t\tRuntimeLibrary=\"0\"";
 
64
    #    } else if ($0 ~ 3) {
 
65
    #        $0 = "\t\t\t\tRuntimeLibrary=\"1\"";
 
66
    #    }
57
67
    print $0;
58
68
    next
59
69
}