2010-01-21 15:12:50 +00:00
|
|
|
# FWnull Plugin
|
|
|
|
|
|
|
|
# plugin name
|
|
|
|
set(FWnullName FWnull)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
# Debug - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
# add defines
|
|
|
|
add_definitions(-Wall -fPIC -m32 -g)
|
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
|
|
|
|
# Devel - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
# add defines
|
|
|
|
add_definitions(-Wall -fPIC -m32 -O2)
|
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
|
|
|
|
# Release - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
# add defines
|
2010-05-16 00:12:10 +00:00
|
|
|
add_definitions(-Wall -fPIC -m32 -O2)
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# FWnull sources
|
|
|
|
set(FWnullSources
|
|
|
|
Config.cpp
|
|
|
|
FW.cpp)
|
|
|
|
|
|
|
|
# FWnull headers
|
|
|
|
set(FWnullHeaders
|
|
|
|
Config.h
|
|
|
|
FW.h)
|
|
|
|
|
|
|
|
# FWnull Linux sources
|
|
|
|
set(FWnullLinuxSources
|
|
|
|
)
|
|
|
|
|
|
|
|
# FWnull Linux headers
|
|
|
|
set(FWnullLinuxHeaders
|
|
|
|
)
|
|
|
|
|
|
|
|
# FWnull Windows sources
|
|
|
|
set(FWnullWindowsSources
|
|
|
|
Windows/Config.cpp
|
|
|
|
Windows/FireWireNull.def
|
|
|
|
Windows/FireWireNul.rc
|
|
|
|
Windows/Win32.cpp)
|
|
|
|
|
|
|
|
# FWnull Windows headers
|
|
|
|
set(FWnullWindowsHeaders
|
|
|
|
Windows/resource.h)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
# add additional include directories
|
|
|
|
include_directories(.)
|
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# add library
|
|
|
|
add_library(${FWnullName} SHARED
|
|
|
|
${FWnullSources}
|
|
|
|
${FWnullHeaders}
|
|
|
|
${FWnullLinuxSources}
|
|
|
|
${FWnullLinuxHeaders})
|
2010-05-16 00:12:10 +00:00
|
|
|
|
|
|
|
# Linker strip option
|
|
|
|
if (CMAKE_BUILD_STRIP)
|
|
|
|
target_link_libraries(${FWnullName} -s)
|
|
|
|
endif (CMAKE_BUILD_STRIP)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# set output directory
|
|
|
|
set_target_properties(${FWnullName} PROPERTIES
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/bin/plugins)
|
|
|
|
|