Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Xiaodragon

Pages: [1]
1
General / Error (0xC0000135) when attempting to run the program in Clion
« on: January 12, 2019, 02:50:41 pm »
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)


Pages: [1]