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.


Messages - DiverDante

Pages: [1]
1
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: September 09, 2017, 09:47:46 am »
There is a better solution? Maybe that allows to use Sfml in any projects without copying everytime the dll?

2
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: September 08, 2017, 02:59:14 pm »
Hi again,
maybe i solve the problem but i don't think is a complete solution:
i modified the PATH in the path variables, and then the examples in the sfml libraries started to work, but my project still failed to run, returning the same error about the dll.
After many attempts, i just copied all .dll in the Cmakefiles directory and this seems to have bypassed the problem.

cmake_minimum_required(VERSION 3.7)
project(SFMLtest1)
set(SFML_ROOT "C:/Librerie/SFML-2.4.2")
#set(SFML_STATIC_LIBRARIES TRUE)
set(CMAKE_MODULE_PATH "C:/Librerie/SFML-2.4.2/cmake/Modules")
find_package(SFML 2 COMPONENTS REQUIRED system window graphics network audio)
include_directories(${SFML_INCLUDE_DIR})

set(CMAKE_CXX_STANDARD 11)
set(SOURCE_FILES main.cpp)
add_executable(SFMLtest1 ${SOURCE_FILES})

target_link_libraries(SFMLtest1 ${SFML_LIBRARIES} )
 

#include <SFML/Graphics.hpp>
#include "config.h"
int main() {
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen()) {
        sf::Event event;
        while (window.pollEvent(event)) {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }
    return 0;
}
 



3
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 30, 2017, 10:03:16 am »
I unistalled and istalled again 32bit v of sfml and using same cmake list and same main I got this

C:\Users\Ludovico\CLionProjects\SFMLprova1\cmake-build-debug\SFMLprova1.exe

Process finished with exit code -1073741515 (0xC0000135)

4
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 29, 2017, 11:22:21 am »
Hi again,
i edit the target link as suggested (both ways to be sure) but i still have the undefined reference errors

cmake_minimum_required(VERSION 3.7)
project(SFMLprova1)

set(CMAKE_CXX_STANDARD 11)


set(SFML_ROOT "C:/Code/Librerie/SFML-2.4.2")

set(CMAKE_MODULE_PATH "C:/Code/Librerie/SFML-2.4.2/cmake/Modules" ${CMAKE_MODULE_PATH})


find_package(SFML COMPONENTS network audio graphics window system REQUIRED)
include_directories(${SFML_INCLUDE_DIR})

set(SOURCE_FILES main.cpp)
add_executable(SFMLprova1 ${SOURCE_FILES})
target_link_libraries(SFMLprova1 ${SFML_LIBRARIES} ${SFML_DEPENDENCIES})



"C:\Users\Ludovico\AppData\Roaming\JetBrains\CLion 2017.1.3\bin\cmake\bin\cmake.exe" --build C:\Users\Ludovico\CLionProjects\SFMLprova1\cmake-build-debug --target SFMLprova1 -- -j 4
[ 50%] Linking CXX executable SFMLprova1.exe
CMakeFiles\SFMLprova1.dir/objects.a(main.cpp.obj): In function `main':
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf6StringC1EPKcRKSt6locale'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf9VideoModeC1Ejjj'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowC1ENS_9VideoModeERKNS_6StringEjRKNS_15ContextSettingsE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:6: undefined reference to `_imp___ZN2sf11CircleShapeC1Efj'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:7: undefined reference to `_imp___ZN2sf5Color5GreenE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:7: undefined reference to `_imp___ZN2sf5Shape12setFillColorERKNS_5ColorE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:9: undefined reference to `_imp___ZNK2sf6Window6isOpenEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:11: undefined reference to `_imp___ZN2sf6Window9pollEventERNS_5EventE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:13: undefined reference to `_imp___ZN2sf6Window5closeEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:16: undefined reference to `_imp___ZN2sf5ColorC1Ehhhh'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:16: undefined reference to `_imp___ZN2sf12RenderTarget5clearERKNS_5ColorE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:17: undefined reference to `_imp___ZN2sf12RenderStates7DefaultE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:17: undefined reference to `_imp___ZN2sf12RenderTarget4drawERKNS_8DrawableERKNS_12RenderStatesE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:18: undefined reference to `_imp___ZN2sf6Window7displayEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowD1Ev'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowD1Ev'
CMakeFiles\SFMLprova1.dir/objects.a(main.cpp.obj): In function `ZN2sf11CircleShapeD1Ev':
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZTVN2sf11CircleShapeE'
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZTVN2sf11CircleShapeE'
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZN2sf5ShapeD2Ev'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\SFMLprova1.dir\build.make:101: recipe for target 'SFMLprova1.exe' failed
CMakeFiles\Makefile2:66: recipe for target 'CMakeFiles/SFMLprova1.dir/all' failed
CMakeFiles\Makefile2:78: recipe for target 'CMakeFiles/SFMLprova1.dir/rule' failed
mingw32-make.exe[3]: *** [SFMLprova1.exe] Error 1
mingw32-make.exe[2]: *** [CMakeFiles/SFMLprova1.dir/all] Error 2
mingw32-make.exe[1]: *** [CMakeFiles/SFMLprova1.dir/rule] Error 2
mingw32-make.exe: *** [SFMLprova1] Error 2
Makefile:117: recipe for target 'SFMLprova1' failed

5
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 22, 2017, 11:23:39 am »
hi guys
i trying to solve this problem but i got nothing

i have the sfml in this path
C:\Code\Librerie\SFML-2.4.2

i have downloaded the 64bit sfml, mingw.

If i don't set the SFML ROOT i have the "undefined reference" problem
If i do, i have the same error until i edit the target link libraries
then i have this
CMake Error at CMakeLists.txt:17 (target_link_libraries):
  Cannot specify link libraries for target "debug" which is not built by this
  project.

cmake_minimum_required(VERSION 3.7)
project(SFMLprova1)

set(CMAKE_CXX_STANDARD 11)


set(SFML_ROOT "C:/Code/Librerie/SFML-2.4.2")

set(CMAKE_MODULE_PATH "C:/Code/Librerie/SFML-2.4.2/cmake/Modules" ${CMAKE_MODULE_PATH})


find_package(SFML COMPONENTS network audio graphics window system REQUIRED)
include_directories(${SFML_INCLUDE_DIR})

set(SOURCE_FILES main.cpp)
add_executable(SFMLprova1 ${SOURCE_FILES})
target_link_libraries(${EXECUTABLE_NAME} ${SFML_LIBRARIES} ${SFML_DEPENDENCIES})

could be that i downloaded the wrong lib? how can i check it?

6
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 18, 2017, 07:44:49 pm »
oh...right...
I corrected it, but it didn't solve the problem

7
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 18, 2017, 04:29:01 pm »
why is it invalid? what is an example of valid path?

8
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 18, 2017, 12:06:27 pm »
sorry, i did not understand what i have to do, but even if i edit the sfml root, i still have this error:

Make Error at CMakeLists.txt:16 (target_link_libraries):
  Cannot specify link libraries for target "debug" which is not built by this
  project.

there is something else wrong i have to change, or i missed something?

cmake_minimum_required(VERSION 3.7)
project(SFMLprova1)

set(CMAKE_CXX_STANDARD 11)


set(SOURCE_FILES main.cpp)
add_executable(SFMLprova1 ${SOURCE_FILES})
set(SFML_ROOT "C:Code/Librerie/SFML-2.4.2")

set(CMAKE_MODULE_PATH "C:/Code/Librerie/SFML-2.4.2/cmake/Modules")


find_package(SFML 2 REQUIRED network audio graphics window system)
include_directories(${SFML_INCLUDE_DIR})
target_link_libraries(${EXECUTABLE_NAME} ${SFML_LIBRARIES} ${SFML_DEPENDENCIES})

9
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 18, 2017, 11:18:14 am »
ok, I added the edit of SFML_ROOT and then I deleted the target link libraries line and, looking in the main file, it seems to find the library, but when i try to compile, i recieve a lot of error message of that kind

CMakeFiles\SFMLprova1.dir/objects.a(main.cpp.obj): In function `main':
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf6StringC1EPKcRKSt6locale'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf9VideoModeC1Ejjj'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowC1ENS_9VideoModeERKNS_6StringEjRKNS_15ContextSettingsE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:6: undefined reference to `_imp___ZN2sf11CircleShapeC1Efj'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:7: undefined reference to `_imp___ZN2sf5Color5GreenE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:7: undefined reference to `_imp___ZN2sf5Shape12setFillColorERKNS_5ColorE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:9: undefined reference to `_imp___ZNK2sf6Window6isOpenEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:11: undefined reference to `_imp___ZN2sf6Window9pollEventERNS_5EventE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:13: undefined reference to `_imp___ZN2sf6Window5closeEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:16: undefined reference to `_imp___ZN2sf5ColorC1Ehhhh'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:16: undefined reference to `_imp___ZN2sf12RenderTarget5clearERKNS_5ColorE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:17: undefined reference to `_imp___ZN2sf12RenderStates7DefaultE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:17: undefined reference to `_imp___ZN2sf12RenderTarget4drawERKNS_8DrawableERKNS_12RenderStatesE'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:18: undefined reference to `_imp___ZN2sf6Window7displayEv'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowD1Ev'
C:/Users/Ludovico/CLionProjects/SFMLprova1/main.cpp:5: undefined reference to `_imp___ZN2sf12RenderWindowD1Ev'
CMakeFiles\SFMLprova1.dir/objects.a(main.cpp.obj): In function `ZN2sf11CircleShapeD1Ev':
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZTVN2sf11CircleShapeE'
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZTVN2sf11CircleShapeE'
C:/Code/Librerie/SFML-2.4.2/include/SFML/Graphics/CircleShape.hpp:41: undefined reference to `_imp___ZN2sf5ShapeD2Ev'
collect2.exe: error: ld returned 1 exit status
mingw32-make.exe[3]: *** [SFMLprova1.exe] Error 1
mingw32-make.exe[2]: *** [CMakeFiles/SFMLprova1.dir/all] Error 2
CMakeFiles\SFMLprova1.dir\build.make:96: recipe for target 'SFMLprova1.exe' failed
mingw32-make.exe[1]: *** [CMakeFiles/SFMLprova1.dir/rule] Error 2
CMakeFiles\Makefile2:66: recipe for target 'CMakeFiles/SFMLprova1.dir/all' failed
CMakeFiles\Makefile2:78: recipe for target 'CMakeFiles/SFMLprova1.dir/rule' failed
Makefile:117: recipe for target 'SFMLprova1' failed
mingw32-make.exe: *** [SFMLprova1] Error 2

This is the Cmake:

cmake_minimum_required(VERSION 3.7)
project(SFMLprova1)

set(CMAKE_CXX_STANDARD 11)


set(SOURCE_FILES main.cpp)
add_executable(SFMLprova1 ${SOURCE_FILES})
set(SFML_ROOT "C:Code/Librerie/SFML-2.4.2")

set(CMAKE_MODULE_PATH "C:/Code/Librerie/SFML-2.4.2/cmake/Modules")


find_package(SFML 2 REQUIRED network audio graphics window system)
include_directories(${SFML_INCLUDE_DIR})


 

and this is the main:

#include <iostream>
#include <SFML/Graphics.hpp>

int main() {
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen()) {
        sf::Event event;
        while (window.pollEvent(event)) {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

10
General / Re: SFML+CLION +CMAKE (Windows10) configuration
« on: August 14, 2017, 12:55:24 am »
So should i set the sfml root as

set(SFML_ROOT "C:Code/Librerie/SFML-2.4.2") #this is the directory which contains lib and bin

then... should i edit something inside the FindSFML.cmake or edit the value of SFML_DEPENDENCIES? It's not rly clear for me sorry, i'm still a newbie

11
General / SFML+CLION +CMAKE (Windows10) configuration
« on: August 13, 2017, 06:04:28 pm »
Hello everybody,
in the last two days i tried to set the sfml with Cmake in CLion, asking google or looking for answers in the forum when problems occurred.
Now i have to ask u direcly for help, because i don't understand other topics or they don't fit (i guess) my problem.
I had to set the path to FindSFML.cmake (understood),
to let him find the sfml  components (the last error message told:  Could NOT find SFML (missing: SFML_NETWORK_LIBRARY SFML_AUDIO_LIBRARY   SFML_GRAPHICS_LIBRARY SFML_WINDOW_LIBRARY SFML_SYSTEM_LIBRARY) ) and after some attempts the message changed and i thought I found the solution of that problem)

This is what i wrote until now following tutorials and wiki
cmake_minimum_required(VERSION 3.7)
project(SFMLprova1)

set(CMAKE_CXX_STANDARD 11)


set(SOURCE_FILES main.cpp)
add_executable(SFMLprova1 ${SOURCE_FILES})

set(CMAKE_MODULE_PATH "C:/Code/Librerie/SFML-2.4.2/cmake/Modules")

find_package(SFML 2 REQUIRED network audio graphics window system)
if(SFML_FOUND)
    include_directories(${SFML_INCLUDE_DIR})
    target_link_libraries(${EXECUTABLE_NAME} ${SFML_LIBRARIES} ${SFML_DEPENDENCIES})
endif()

this is what i see now in the debug window:
"C:\Users\Ludovico\AppData\Roaming\JetBrains\CLion 2017.1.3\bin\cmake\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - MinGW Makefiles" C:\Users\Ludovico\CLionProjects\SFMLprova1
-- Found SFML 2.4.2 in C:/Code/Librerie/SFML-2.4.2/include
CMake Error at CMakeLists.txt:15 (target_link_libraries):
  Cannot specify link libraries for target "debug" which is not built by this
  project.


-- Configuring incomplete, errors occurred!
See also "C:/Users/Ludovico/CLionProjects/SFMLprova1/cmake-build-debug/CMakeFiles/CMakeOutput.log".

Pages: [1]