I keep getting (0xC0000135) as an error when I try to run the program in Clion.
this is what i have as my cmakelists.txt
cmake_minimum_required(VERSION 3.6)
project(SFMLTest)
set(SFML_DIR "C:/Users/Josh/libraries/SFML/lib/cmake/SFML")
find_package(SFML 2.5.1 COMPONENTS graphics)
add_executable(SFMLTest main.cpp)
target_link_libraries(SFMLTest sfml-graphics sfml-audio)