Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. lorli

    C++ How to compile sfml project using cmake on linux

    How can I compile my sfml project using cmake? Using simple g++ command I would do this g++ -o test file1.cpp file2.cpp -lsfml-graphics -lsfml-window -lsfml-system so far I have this in my cmake file: cmake_minimum_required(VERSION 3.25.2) project(life) set (SOURCES file1.cpp file2.cpp)...
  2. lorli

    Looking for guy to make some projects in C++ with

    I'm looking for someone that codes in C++ to create some simple projects with me and share experience. I'm 13 so I don't think it's ok i someone 43 yo will write to me to make some projects. It's like "Looking for friend that codes in c++" kind of post. (I'm not very active, sorry for bad english)
  3. lorli

    Safe way to store password in open source app

    I was thinking about making my terminal password manager and I want to make every of my apps +- good. So what I want is to store password for example hashed in file, but someone can just look at the code on my pc and see what I did to hash it and just unhash (Probably nobody will ever do that...
  4. lorli

    Hello in C++

    #include <iostream> #define hello "Hello" #define world ", World\n"; #define print std::cout<< int main() { print hello world } What kind of questoins can I ask btw?
Back
Top Bottom