remove Tests/Examples build from CMakeLists

This commit is contained in:
Michael Helmling 2012-02-26 10:37:59 +01:00
parent b05c3161c7
commit fa0656e3c6
2 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@ if(VISIBILITY_HIDDEN)
add_definitions (-fvisibility=hidden)
endif()
option(BUILD_TESTS "Build the test suite" ON)
option(BUILD_EXAMPLES "Build the examples" ON)
option(BUILD_TESTS "Build the test suite" OFF)
option(BUILD_EXAMPLES "Build the examples" OFF)
option(NO_ITUNES_HACKS "Disable workarounds for iTunes bugs" OFF)

View File

@ -134,7 +134,7 @@ PropertyMap APE::File::setProperties(const PropertyMap &properties)
else if(d->hasID3v1)
return d->tag.access<ID3v1::Tag>(ID3v1Index, false)->setProperties(properties);
else
return d->tag.access<APE::Tag>(APE, true)->setProperties(properties);
return d->tag.access<APE::Tag>(APEIndex, true)->setProperties(properties);
}
APE::Properties *APE::File::audioProperties() const