Also updates main CMakeLists.txt and CMakeLists.txt for unit tests, also adds additional build directories to .gitignore file
12 lines
252 B
CMake
12 lines
252 B
CMake
project(win-test)
|
|
|
|
add_executable(win-test WIN32)
|
|
|
|
target_sources(win-test PRIVATE test.cpp)
|
|
|
|
target_link_libraries(win-test PRIVATE OBS::libobs)
|
|
|
|
set_target_properties(win-test PROPERTIES FOLDER "tests and examples")
|
|
|
|
define_graphic_modules(win-test)
|