Changeset 1387

Show
Ignore:
Timestamp:
06/18/08 15:11:44 (5 months ago)
Author:
rexbron
Message:

Initial work on ofx plugin cmake files.

Location:
trunk
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-id:v3-trunk0
      •  

        old new  
        991382 andrew@aehunter.net-20080618200208-ysmuaq2p7bfh7km4 
        10101383 andrew@aehunter.net-20080618200623-29djr6bh81pmu2mu 
         111384 andrew@aehunter.net-20080618201105-neebgl19i1lbskta 
    • Property bzr:file-ids
      •  

        old new  
         1src/openmedialib/plugins/ofx/CMakeLists.txt     cmakelists.txt-20080618195718-n53mf989huhz0bvq-1 
    • Property bzr:ancestry:v3-trunk0
      •  

        old new  
        99andrew@aehunter.net-20080618182841-z2to60sr79wfdq9o 
        1010andrew@aehunter.net-20080618190025-f4tqmfnhagk3glij 
         11andrew@aehunter.net-20080618195823-74quloizraz2fwj2 
    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-06-18 21:06:23.986000061 +0100 
         1timestamp: 2008-06-18 21:11:05.530999899 +0100 
        22committer: Andrew Hunter <andrew@aehunter.net> 
        33properties:  
  • trunk/FindOPENFX.cmake

    r1378 r1387  
    22# 
    33# OPENFX_FOUND 
    4 # OPENFX_INCLUDE_PATH 
     4# OPENFX_INCLUDE_DIR 
    55 
    66IF ( WIN32 ) 
     
    1010        #Add commands to find libofx on OS X 
    1111    ELSE ( APPLE ) 
    12         FIND_PATH( OPENFX_INCLUDE_PATH ofxTimeLine.h 
     12        FIND_PATH( OPENFX_INCLUDE_DIR ofxTimeLine.h 
    1313                   PATHS /usr/include/ 
    1414                         /usr/local/include/ 
     
    2020SET ( OPENFX_FOUND FALSE ) 
    2121 
    22 IF ( OPENFX_INCLUDE_PATH ) 
     22IF ( OPENFX_INCLUDE_DIR ) 
    2323    SET ( OPENFX_FOUND TRUE ) 
    24 ENDIF ( OPENFX_INCLUDE_PATH ) 
     24ENDIF ( OPENFX_INCLUDE_DIR ) 
    2525 
    26 MARK_AS_ADVANCED ( OPENFX_INCLUDE_PATH ) 
     26MARK_AS_ADVANCED ( OPENFX_INCLUDE_DIR ) 
  • trunk/src/openmedialib/plugins/CMakeLists.txt

    r1373 r1387  
    33add_subdirectory( avformat ) 
    44add_subdirectory( gensys ) 
    5 #add_subdirectory( ofx ) 
     5if ( WITH_OFX_PLUGIN ) 
     6    add_subdirectory( ofx ) 
     7endif ( WITH_OFX_PLUGIN ) 
    68add_subdirectory( openal ) 
    79add_subdirectory( sdl )