SFML community forums

Help => General => Topic started by: sfmlearner on May 23, 2022, 05:34:28 pm

Title: [SOLVED] Makefile undefined references
Post by: sfmlearner on May 23, 2022, 05:34:28 pm
Hi, I saw that there already are Makefile threads, but I couldn't find the solution after hours of trying.

This is my project structure:

sorting-visualizer/
├─ lib/
│  ├─ SFML-2.5.1/
│  │  ├─ include/
│  │  ├─ lib/
├─ src/
│  ├─ [cpp and h fiiles...]
├─ Makefile

Im trying to build the project using Makefile, here is the output when I try to run make: https://pastebin.com/xa2QgC3E

And here is my Makefile:

# SFML
SFML_DIR=./lib/SFML-2.5.1

SFML_LIBS=-lsfml-graphics -lsfml-window -lsfml-system

# Steps
steps: compile clean

# Compile source files
main.o: ./src/main.cpp
        g++ -c ./src/main.cpp -I$(SFML_DIR)/include

Sortable.o: ./src/Sortable.cpp
        g++ -c ./src/Sortable.cpp -I$(SFML_DIR)/include

SortAlgorithms.o: ./src/SortAlgorithms.cpp
        g++ -c ./src/SortAlgorithms.cpp -I$(SFML_DIR)/include

SortController.o: ./src/SortController.cpp
        g++ -c ./src/SortController.cpp -I$(SFML_DIR)/include

Utils.o: ./src/Utils.cpp
        g++ -c ./src/Utils.cpp -I$(SFML_DIR)/include

# Compile binary
compile: main.o Sortable.o SortAlgorithms.o SortController.o Utils.o
        g++ *.o -o sorting-visualizer -L$(SFML_DIR)/lib $(LIBS)

        @echo
        @echo Done! Run ./sorting-visualizer to open

# Clean object files after building
clean:
        @rm *.o
 

Im using Arch Linux, should I use CMake instead? It would be great if the project could be built easily for Windows and macOS too, that's why I'm including the libraries instead of using the package manager.

Thanks!
Title: Re: Makefile undefined references
Post by: sfmlearner on May 23, 2022, 05:52:04 pm
I decided to use CMake instead, using CMake will be easier to port the project to other platforms
Title: Re: Makefile undefined references
Post by: eXpl0it3r on May 23, 2022, 06:39:01 pm
Yeah, I highly recommend CMake as it's much more flexible, especially when it comes to cross-platform and cross-compiler support.

Here's a template that might help you get things started: https://github.com/eXpl0it3r/cmake-sfml-project
Title: Re: Makefile undefined references
Post by: sfmlearner on May 23, 2022, 06:45:56 pm
Thanks! I ended up using CMake and was so much easier  :) , here is the CMakeLists.txt that I made, if someone is having the same issue:

cmake_minimum_required(VERSION 3.22)
project(sorting-visualizer)

set(SFML_DIR "lib/SFML-2.5.1/lib/cmake/SFML")


find_package(SFML COMPONENTS graphics window REQUIRED)

add_executable(sorting-visualizer src/main.cpp src/Sortable.cpp src/SortAlgorithms.cpp src/SortController.cpp src/Utils.cpp)

target_link_libraries(sorting-visualizer sfml-graphics sfml-window)