mirror of
https://github.com/love2d/megasource.git
synced 2026-08-17 11:11:35 +02:00
Update OpenAL-soft to 1.23.1-bc7cb17.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
add_executable(OpenAL_Tests)
|
||||
|
||||
include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
googletest
|
||||
GIT_REPOSITORY https://github.com/google/googletest.git
|
||||
GIT_TAG main
|
||||
)
|
||||
# For Windows: Prevent overriding the parent project's compiler/linker settings
|
||||
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
||||
FetchContent_MakeAvailable(googletest)
|
||||
|
||||
target_link_libraries(OpenAL_Tests PRIVATE
|
||||
OpenAL
|
||||
GTest::gtest_main
|
||||
)
|
||||
|
||||
target_sources(OpenAL_Tests PRIVATE
|
||||
example.t.cpp
|
||||
)
|
||||
|
||||
# This needs to come last
|
||||
include(GoogleTest)
|
||||
gtest_discover_tests(OpenAL_Tests)
|
||||
@@ -0,0 +1,16 @@
|
||||
#include <gtest/gtest.h>
|
||||
#include <AL/al.h>
|
||||
|
||||
class ExampleTest : public ::testing::Test {
|
||||
};
|
||||
|
||||
|
||||
TEST_F(ExampleTest, Basic)
|
||||
{
|
||||
// just making sure we compile
|
||||
ALuint source, buffer;
|
||||
ALfloat offset;
|
||||
ALenum state;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user